summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/servconf.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-07-14 22:59:47 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-07-14 22:59:47 +0000
commitb121934a5988cd6608b2dccb71679a049e9c6eb8 (patch)
treecb9801a62677e01b125a4b81802f2c6f79ecb3ee /usr.bin/ssh/servconf.c
parente2fa6def2cf46c9b118af477afb4086860dd6035 (diff)
allow leading whitespace. ok niels
Diffstat (limited to 'usr.bin/ssh/servconf.c')
-rw-r--r--usr.bin/ssh/servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index 9e85533cde2..477204cfd69 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/servconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.48 2000/07/13 22:53:21 provos Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.49 2000/07/14 22:59:46 markus Exp $");
#include "ssh.h"
#include "servconf.h"
@@ -320,7 +320,7 @@ read_server_config(ServerOptions *options, const char *filename)
arg = strdelim(&cp);
/* Ignore leading whitespace */
if (*arg == '\0')
- arg = cp;
+ arg = strdelim(&cp);
if (!*arg || *arg == '#')
continue;
opcode = parse_token(arg, filename, linenum);