diff options
-rw-r--r-- | sysklogd/syslogd.c | 3 |
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; |