mirror of https://github.com/mirror/busybox.git
Fix bug in accepting buffer size argument
parent
8539667279
commit
e8f46515cb
|
@ -631,7 +631,7 @@ extern int syslogd_main(int argc, char **argv)
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
/* do normal option parsing */
|
/* 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) {
|
switch (opt) {
|
||||||
case 'm':
|
case 'm':
|
||||||
MarkInterval = atoi(optarg) * 60;
|
MarkInterval = atoi(optarg) * 60;
|
||||||
|
|
Loading…
Reference in New Issue