aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sysklogd/syslogd.c9
-rw-r--r--syslogd.c9
2 files changed, 6 insertions, 12 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 9f5fc93b1..379efcf51 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -494,17 +494,14 @@ static void doSyslogd (void)
494 alarm (MarkInterval); 494 alarm (MarkInterval);
495 495
496 /* Create the syslog file so realpath() can work. */ 496 /* Create the syslog file so realpath() can work. */
497 close (open (_PATH_LOG, O_RDWR | O_CREAT, 0644)); 497 if (realpath (_PATH_LOG, lfile) != NULL)
498 if (realpath (_PATH_LOG, lfile) == NULL) 498 unlink (lfile);
499 perror_msg_and_die ("Could not resolve path to " _PATH_LOG);
500
501 unlink (lfile);
502 499
503 memset (&sunx, 0, sizeof (sunx)); 500 memset (&sunx, 0, sizeof (sunx));
504 sunx.sun_family = AF_UNIX; 501 sunx.sun_family = AF_UNIX;
505 strncpy (sunx.sun_path, lfile, sizeof (sunx.sun_path)); 502 strncpy (sunx.sun_path, lfile, sizeof (sunx.sun_path));
506 if ((sock_fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) 503 if ((sock_fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
507 perror_msg_and_die ("Couldn't obtain descriptor for socket " _PATH_LOG); 504 perror_msg_and_die ("Couldn't get file descriptor for socket " _PATH_LOG);
508 505
509 addrLength = sizeof (sunx.sun_family) + strlen (sunx.sun_path); 506 addrLength = sizeof (sunx.sun_family) + strlen (sunx.sun_path);
510 if ((bind (sock_fd, (struct sockaddr *) &sunx, addrLength)) || (listen (sock_fd, 5))) 507 if ((bind (sock_fd, (struct sockaddr *) &sunx, addrLength)) || (listen (sock_fd, 5)))
diff --git a/syslogd.c b/syslogd.c
index 9f5fc93b1..379efcf51 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -494,17 +494,14 @@ static void doSyslogd (void)
494 alarm (MarkInterval); 494 alarm (MarkInterval);
495 495
496 /* Create the syslog file so realpath() can work. */ 496 /* Create the syslog file so realpath() can work. */
497 close (open (_PATH_LOG, O_RDWR | O_CREAT, 0644)); 497 if (realpath (_PATH_LOG, lfile) != NULL)
498 if (realpath (_PATH_LOG, lfile) == NULL) 498 unlink (lfile);
499 perror_msg_and_die ("Could not resolve path to " _PATH_LOG);
500
501 unlink (lfile);
502 499
503 memset (&sunx, 0, sizeof (sunx)); 500 memset (&sunx, 0, sizeof (sunx));
504 sunx.sun_family = AF_UNIX; 501 sunx.sun_family = AF_UNIX;
505 strncpy (sunx.sun_path, lfile, sizeof (sunx.sun_path)); 502 strncpy (sunx.sun_path, lfile, sizeof (sunx.sun_path));
506 if ((sock_fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) 503 if ((sock_fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
507 perror_msg_and_die ("Couldn't obtain descriptor for socket " _PATH_LOG); 504 perror_msg_and_die ("Couldn't get file descriptor for socket " _PATH_LOG);
508 505
509 addrLength = sizeof (sunx.sun_family) + strlen (sunx.sun_path); 506 addrLength = sizeof (sunx.sun_family) + strlen (sunx.sun_path);
510 if ((bind (sock_fd, (struct sockaddr *) &sunx, addrLength)) || (listen (sock_fd, 5))) 507 if ((bind (sock_fd, (struct sockaddr *) &sunx, addrLength)) || (listen (sock_fd, 5)))