summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 39e195837..0999f28e3 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.c,v 1.161 2007/01/21 01:45:35 stevesk Exp $ */ 1/* $OpenBSD: readconf.c,v 1.162 2007/03/20 03:56:12 tedu Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1286,7 +1286,7 @@ parse_forward(Forward *fwd, const char *fwdspec)
1286 cp = p = xstrdup(fwdspec); 1286 cp = p = xstrdup(fwdspec);
1287 1287
1288 /* skip leading spaces */ 1288 /* skip leading spaces */
1289 while (*cp && isspace(*cp)) 1289 while (isspace(*cp))
1290 cp++; 1290 cp++;
1291 1291
1292 for (i = 0; i < 4; ++i) 1292 for (i = 0; i < 4; ++i)