summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c
index 2ae93d4c3..7923f5df4 100644
--- a/servconf.c
+++ b/servconf.c
@@ -447,7 +447,8 @@ process_server_config_line(ServerOptions *options, char *line,
447 u_int i; 447 u_int i;
448 448
449 cp = line; 449 cp = line;
450 arg = strdelim(&cp); 450 if ((arg = strdelim(&cp)) != NULL)
451 return 0;
451 /* Ignore leading whitespace */ 452 /* Ignore leading whitespace */
452 if (*arg == '\0') 453 if (*arg == '\0')
453 arg = strdelim(&cp); 454 arg = strdelim(&cp);