diff options
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/servconf.c b/servconf.c index 5fa41e028..916215061 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -222,7 +222,7 @@ static struct { | |||
222 | { "port", sPort }, | 222 | { "port", sPort }, |
223 | { "hostkey", sHostKeyFile }, | 223 | { "hostkey", sHostKeyFile }, |
224 | { "hostdsakey", sHostKeyFile }, /* alias */ | 224 | { "hostdsakey", sHostKeyFile }, /* alias */ |
225 | { "pidfile", sPidFile }, | 225 | { "pidfile", sPidFile }, |
226 | { "serverkeybits", sServerKeyBits }, | 226 | { "serverkeybits", sServerKeyBits }, |
227 | { "logingracetime", sLoginGraceTime }, | 227 | { "logingracetime", sLoginGraceTime }, |
228 | { "keyregenerationinterval", sKeyRegenerationTime }, | 228 | { "keyregenerationinterval", sKeyRegenerationTime }, |
@@ -560,7 +560,7 @@ parse_flag: | |||
560 | case sXAuthLocation: | 560 | case sXAuthLocation: |
561 | charptr = &options->xauth_location; | 561 | charptr = &options->xauth_location; |
562 | goto parse_filename; | 562 | goto parse_filename; |
563 | 563 | ||
564 | case sStrictModes: | 564 | case sStrictModes: |
565 | intptr = &options->strict_modes; | 565 | intptr = &options->strict_modes; |
566 | goto parse_flag; | 566 | goto parse_flag; |
@@ -716,14 +716,14 @@ parse_flag: | |||
716 | case sBanner: | 716 | case sBanner: |
717 | charptr = &options->banner; | 717 | charptr = &options->banner; |
718 | goto parse_filename; | 718 | goto parse_filename; |
719 | 719 | ||
720 | default: | 720 | default: |
721 | fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n", | 721 | fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n", |
722 | filename, linenum, arg, opcode); | 722 | filename, linenum, arg, opcode); |
723 | exit(1); | 723 | exit(1); |
724 | } | 724 | } |
725 | if ((arg = strdelim(&cp)) != NULL && *arg != '\0') { | 725 | if ((arg = strdelim(&cp)) != NULL && *arg != '\0') { |
726 | fprintf(stderr, | 726 | fprintf(stderr, |
727 | "%s line %d: garbage at end of line; \"%.200s\".\n", | 727 | "%s line %d: garbage at end of line; \"%.200s\".\n", |
728 | filename, linenum, arg); | 728 | filename, linenum, arg); |
729 | exit(1); | 729 | exit(1); |