diff options
author | Darren Tucker <dtucker@zip.com.au> | 2007-03-21 10:46:03 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2007-03-21 10:46:03 +0100 |
commit | 03b1cdbb44c998d933cf804decff92f6eafa6e65 (patch) | |
tree | abf356e5d56c98312670ad52601d0b9e0f92c69e /readconf.c | |
parent | - dtucker@cvs.openbsd.org 2007/03/19 12:16:42 (diff) | |
download | openssh-03b1cdbb44c998d933cf804decff92f6eafa6e65.tar.xz openssh-03b1cdbb44c998d933cf804decff92f6eafa6e65.zip |
- tedu@cvs.openbsd.org 2007/03/20 03:56:12
[readconf.c clientloop.c]
remove some bogus *p tests from charles longeau
ok deraadt millert
Diffstat (limited to '')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 2485146a0..d57d4551d 100644 --- a/readconf.c +++ b/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.161 2007/01/21 01:45:35 stevesk Exp $ */ +/* $OpenBSD: readconf.c,v 1.162 2007/03/20 03:56:12 tedu Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1224,7 +1224,7 @@ parse_forward(Forward *fwd, const char *fwdspec) cp = p = xstrdup(fwdspec); /* skip leading spaces */ - while (*cp && isspace(*cp)) + while (isspace(*cp)) cp++; for (i = 0; i < 4; ++i) |