]> andersk Git - openssh.git/blobdiff - servconf.c
- djm@cvs.openbsd.org 2006/03/19 02:24:05
[openssh.git] / servconf.c
index 2ae93d4c3d290ca74e38aa72992b8c88bb3c5949..7923f5df4c985b7925538a2f7608765ede668040 100644 (file)
@@ -447,7 +447,8 @@ process_server_config_line(ServerOptions *options, char *line,
        u_int i;
 
        cp = line;
-       arg = strdelim(&cp);
+       if ((arg = strdelim(&cp)) != NULL)
+               return 0;
        /* Ignore leading whitespace */
        if (*arg == '\0')
                arg = strdelim(&cp);
This page took 0.082778 seconds and 4 git commands to generate.