OSDN Git Service

do not pass 3rd param to open() which do not create files
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 5 Sep 2009 21:35:09 +0000 (23:35 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 5 Sep 2009 21:35:09 +0000 (23:35 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libc/unistd/daemon.c
utils/ldd.c

index b18d618..3dcd995 100644 (file)
 
 #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
 
-/* libc_hidden_proto(open) */
-/* libc_hidden_proto(close) */
-/* libc_hidden_proto(_exit) */
-/* libc_hidden_proto(dup2) */
-/* libc_hidden_proto(setsid) */
-/* libc_hidden_proto(chdir) */
-/* libc_hidden_proto(fork) */
-
 #ifndef __ARCH_USE_MMU__
 #include <sys/syscall.h>
 #include <sched.h>
@@ -93,7 +85,7 @@ static inline pid_t fork_parent(void)
 }
 #endif
 
-int daemon( int nochdir, int noclose )
+int daemon(int nochdir, int noclose)
 {
        int fd;
 
@@ -101,18 +93,18 @@ int daemon( int nochdir, int noclose )
                return -1;
 
        if (setsid() == -1)
-               return(-1);
+               return -1;
 
        if (!nochdir)
                chdir("/");
 
-       if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
+       if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR)) != -1) {
                dup2(fd, STDIN_FILENO);
                dup2(fd, STDOUT_FILENO);
                dup2(fd, STDERR_FILENO);
                if (fd > 2)
                        close(fd);
        }
-       return(0);
+       return 0;
 }
 #endif
index e7a94cb..9cfd984 100644 (file)
@@ -262,7 +262,7 @@ static int map_cache(void)
        else if (cache_addr != NULL)
                return 0;
 
-       if (stat(LDSO_CACHE, &st) || (fd = open(LDSO_CACHE, O_RDONLY, 0)) < 0) {
+       if (stat(LDSO_CACHE, &st) || (fd = open(LDSO_CACHE, O_RDONLY)) < 0) {
                fprintf(stderr, "ldd: can't open cache '%s'\n", LDSO_CACHE);
                cache_addr = (caddr_t) - 1;     /* so we won't try again */
                return -1;