projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b8765c
)
Vodz, last patch 104
author
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 29 Aug 2003 07:35:08 +0000
(07:35 -0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 29 Aug 2003 07:35:08 +0000
(07:35 -0000)
sysklogd/syslogd.c
patch
|
blob
|
history
diff --git
a/sysklogd/syslogd.c
b/sysklogd/syslogd.c
index c554536c8bc6f15a03ece480715c0e0c3d212d1e..ca6aee30719af371e1aa03a673abd45ffddef4ea 100644
(file)
--- a/
sysklogd/syslogd.c
+++ b/
sysklogd/syslogd.c
@@
-574,9
+574,7
@@
extern int syslogd_main(int argc, char **argv)
{
int opt;
-#if ! defined(__uClinux__)
int doFork = TRUE;
-#endif
char *p;
@@
-586,11
+584,9
@@
extern int syslogd_main(int argc, char **argv)
case 'm':
MarkInterval = atoi(optarg) * 60;
break;
-#if ! defined(__uClinux__)
case 'n':
doFork = FALSE;
break;
-#endif
case 'O':
logFilePath = bb_xstrdup(optarg);
break;
@@
-634,7
+630,7
@@
extern int syslogd_main(int argc, char **argv)
if ((doFork == TRUE) && (daemon(0, 1) < 0)) {
bb_perror_msg_and_die("daemon");
-#if
!
defined(__uClinux__)
+#if defined(__uClinux__)
vfork_daemon_rexec(argc, argv, "-n");
#endif
}