aboutsummaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-06-22 19:05:05 +0000
committerEric Andersen <andersen@codepoet.org>2004-06-22 19:05:05 +0000
commitbb692cdb32bcaf696119aa418ea98fc253bbc002 (patch)
tree9c70c378018af1a31497ab5e87732f133588977e /sysklogd
parentcb3b9b1fed3685198fca2e7070a7179288d2def2 (diff)
downloadbusybox-bb692cdb32bcaf696119aa418ea98fc253bbc002.tar.gz
Add missing 'S' to the getopt string.
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 8845bb41b..01f27408b 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -631,7 +631,7 @@ extern int syslogd_main(int argc, char **argv)
char *p;
/* do normal option parsing */
- while ((opt = getopt(argc, argv, "m:nO:s:b:R:LC::")) > 0) {
+ while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC::")) > 0) {
switch (opt) {
case 'm':
MarkInterval = atoi(optarg) * 60;