From 87e5598795b289a87f80ff147bebb6753c9ff73e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 18 Feb 1997 03:55:57 +0000 Subject: Don't need to give execute permissions. svn path=/trunk/; revision=899 --- daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'daemon.c') diff --git a/daemon.c b/daemon.c index aa3917db..ce8eee54 100644 --- a/daemon.c +++ b/daemon.c @@ -154,7 +154,7 @@ nottyDetach: } if (logfile) - fd = open(logfile, O_CREAT|O_WRONLY|O_APPEND, 0777); /* stdout */ + fd = open(logfile, O_CREAT|O_WRONLY|O_APPEND, 0666); /* stdout */ else if (dup(fd) < 0) { /* stdout */ error(0, errno, "dup"); -- cgit v1.2.3