Add missing 'S' to the getopt string.

This commit is contained in:
Eric Andersen 2004-06-22 19:05:05 +00:00
parent cb3b9b1fed
commit bb692cdb32

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