ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtdaemon.C (file contents):
Revision 1.16 by sf-exg, Sun May 1 13:54:27 2011 UTC vs.
Revision 1.18 by sf-exg, Mon Dec 5 12:22:50 2011 UTC

25#include <cstdio> 25#include <cstdio>
26 26
27#include <inttypes.h> 27#include <inttypes.h>
28#include <unistd.h> 28#include <unistd.h>
29#include <errno.h> 29#include <errno.h>
30#include <sys/stat.h>
30#include <sys/types.h> 31#include <sys/types.h>
31#include <sys/utsname.h> 32#include <sys/utsname.h>
32 33
33#include "rxvtdaemon.h" 34#include "rxvtdaemon.h"
34 35
41 { 42 {
42 struct utsname u; 43 struct utsname u;
43 uname (&u); 44 uname (&u);
44 45
45 path = getenv ("HOME"); 46 path = getenv ("HOME");
47 if (!path)
48 path = "/tmp";
49
50 snprintf (name, PATH_MAX, "%s/.urxvt", path);
51 mkdir (name, 0777);
52
46 snprintf (name, PATH_MAX, "%s/.rxvt-unicode-%s", 53 snprintf (name, PATH_MAX, "%s/.urxvt/urxvtd-%s",
47 path ? path : "/tmp", 54 path,
48 u.nodename); 55 u.nodename);
49 56
50 path = name; 57 path = name;
51 } 58 }
52 59
86 if (len) 93 if (len)
87 *len = l; 94 *len = l;
88 95
89 data = new char[l + 1]; 96 data = new char[l + 1];
90 97
91 if (!data)
92 return false;
93
94 if (read (fd, data, l) != l) 98 if (read (fd, data, l) != l)
95 return false; 99 return false;
96 100
97 data[l] = 0; 101 data[l] = 0;
98 102

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines