aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-07-22 04:23:18 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-07-22 04:23:18 +0000
commit5529b7bb874396af53552cf12e3e354693350ba2 (patch)
treea4e344fb59f32c4845003f7f32d918aa50f9f599
parent36a836d5649e67506a8f0261c564e01651c21a26 (diff)
downloadbusybox-w32-5529b7bb874396af53552cf12e3e354693350ba2.tar.gz
busybox-w32-5529b7bb874396af53552cf12e3e354693350ba2.tar.bz2
busybox-w32-5529b7bb874396af53552cf12e3e354693350ba2.zip
Reverse my previous change, "::" is a GNU getopt extension that allows
an optional argument. Looks like a glibc bug to me
-rw-r--r--sysklogd/syslogd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 8534c0ad0..2023873a8 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -31,6 +31,7 @@
31#include <ctype.h> 31#include <ctype.h>
32#include <errno.h> 32#include <errno.h>
33#include <fcntl.h> 33#include <fcntl.h>
34#include <getopt.h>
34#include <netdb.h> 35#include <netdb.h>
35#include <paths.h> 36#include <paths.h>
36#include <signal.h> 37#include <signal.h>
@@ -631,7 +632,7 @@ extern int syslogd_main(int argc, char **argv)
631 char *p; 632 char *p;
632 633
633 /* do normal option parsing */ 634 /* do normal option parsing */
634 while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC:")) > 0) { 635 while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC::")) > 0) {
635 switch (opt) { 636 switch (opt) {
636 case 'm': 637 case 'm':
637 MarkInterval = atoi(optarg) * 60; 638 MarkInterval = atoi(optarg) * 60;