From dccfb2a9c156d03b6399120ae3dd4b23ff00b43f Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Mon, 26 Aug 2013 21:55:33 +0200 Subject: syslogd: cleanup - fix bugs introduced in the cleanups - inline addrfds() and open_unix_socks() and simplify them - use xpidfile() - remove isNetwork from struct logfile - invert the meaning of facility and level in struct logfile so that they are automatically correctly initialized - fix memory leak regarding the filenames of logfiles - TT.sd was unused --- lib/xwrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xwrap.c') diff --git a/lib/xwrap.c b/lib/xwrap.c index 9f1dc996..f5eb4d11 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -452,7 +452,7 @@ void xpidfile(char *name) sprintf(pidfile, "/var/run/%s.pid", name); // Try three times to open the sucker. for (i=0; i<3; i++) { - fd = open(pidfile, O_CREAT|O_EXCL, 0644); + fd = open(pidfile, O_CREAT|O_EXCL|O_WRONLY, 0644); if (fd != -1) break; // If it already existed, read it. Loop for race condition. -- cgit v1.2.3