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.15 by root, Mon Feb 21 07:41:02 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#include <limits.h>
33 33
34#include "rxvtdaemon.h" 34#include "rxvtdaemon.h"
35 35
36char *rxvt_connection::unix_sockname () 36char *rxvt_connection::unix_sockname ()
37{ 37{
42 { 42 {
43 struct utsname u; 43 struct utsname u;
44 uname (&u); 44 uname (&u);
45 45
46 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
47 snprintf (name, PATH_MAX, "%s/.rxvt-unicode-%s", 53 snprintf (name, PATH_MAX, "%s/.urxvt/urxvtd-%s",
48 path ? path : "/tmp", 54 path,
49 u.nodename); 55 u.nodename);
50 56
51 path = name; 57 path = name;
52 } 58 }
53 59
87 if (len) 93 if (len)
88 *len = l; 94 *len = l;
89 95
90 data = new char[l + 1]; 96 data = new char[l + 1];
91 97
92 if (!data)
93 return false;
94
95 if (read (fd, data, l) != l) 98 if (read (fd, data, l) != l)
96 return false; 99 return false;
97 100
98 data[l] = 0; 101 data[l] = 0;
99 102

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines