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.20 by sf-exg, Mon Jan 23 14:29:24 2012 UTC

18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *----------------------------------------------------------------------*/ 21 *----------------------------------------------------------------------*/
22 22
23#include <cstdlib> 23#include <stdlib.h>
24#include <cstring> 24#include <string.h>
25#include <cstdio> 25#include <stdio.h>
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
84 return false; 91 return false;
85 92
86 if (len) 93 if (len)
87 *len = l; 94 *len = l;
88 95
89 data = new char[l + 1]; 96 data = (char *)malloc (l + 1);
90 97
91 if (!data) 98 if (!data)
92 return false; 99 return false;
93 100
94 if (read (fd, data, l) != l) 101 if (read (fd, data, l) != l)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines