=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/servconf.c,v retrieving revision 1.146 retrieving revision 1.147 diff -u -r1.146 -r1.147 --- src/usr.bin/ssh/servconf.c 2005/12/08 18:34:11 1.146 +++ src/usr.bin/ssh/servconf.c 2006/03/19 02:24:05 1.147 @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.146 2005/12/08 18:34:11 reyk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.147 2006/03/19 02:24:05 djm Exp $"); #include "ssh.h" #include "log.h" @@ -413,7 +413,8 @@ u_int i; cp = line; - arg = strdelim(&cp); + if ((arg = strdelim(&cp)) != NULL) + return 0; /* Ignore leading whitespace */ if (*arg == '\0') arg = strdelim(&cp);