diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-07-21 13:06:30 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-07-21 13:06:30 +0000 |
commit | e8f46515cb9626ad723ba7bf9809476047510804 (patch) | |
tree | b037a7b2df6f247e15107d5d489c9725671c38c2 | |
parent | 853966727962976725be76ef8ed9b117efbe3105 (diff) | |
download | busybox-w32-e8f46515cb9626ad723ba7bf9809476047510804.tar.gz busybox-w32-e8f46515cb9626ad723ba7bf9809476047510804.tar.bz2 busybox-w32-e8f46515cb9626ad723ba7bf9809476047510804.zip |
Fix bug in accepting buffer size argument
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 01f27408b..8534c0ad0 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -631,7 +631,7 @@ extern int syslogd_main(int argc, char **argv) | |||
631 | char *p; | 631 | char *p; |
632 | 632 | ||
633 | /* do normal option parsing */ | 633 | /* do normal option parsing */ |
634 | while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC::")) > 0) { | 634 | while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC:")) > 0) { |
635 | switch (opt) { | 635 | switch (opt) { |
636 | case 'm': | 636 | case 'm': |
637 | MarkInterval = atoi(optarg) * 60; | 637 | MarkInterval = atoi(optarg) * 60; |