Fix bug in accepting buffer size argument

This commit is contained in:
Glenn L McGrath 2004-07-21 13:06:30 +00:00
parent 8539667279
commit e8f46515cb

View File

@ -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:Sb:R:LC::")) > 0) {
while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC:")) > 0) {
switch (opt) {
case 'm':
MarkInterval = atoi(optarg) * 60;