diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-11-03 02:44:42 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-11-03 02:44:42 +0000 |
commit | 3214cd0df2879b0699ec286c4475b351cab0f81a (patch) | |
tree | 487859ed28f3932a75dddba1bed45b43720f94c8 /usr.bin/ssh | |
parent | 9e240a5d48a1ca3a810790ecfa4b716b6e43a16e (diff) |
fix comment
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 2d2a8d3249c..4223982ee14 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.169 2008/11/03 01:07:02 stevesk Exp $ */ +/* $OpenBSD: readconf.c,v 1.170 2008/11/03 02:44:41 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1220,7 +1220,7 @@ parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd) if ((fwdarg[i] = hpdelim(&cp)) == NULL) break; - /* Check for trailing garbage in 4-arg case*/ + /* Check for trailing garbage */ if (cp != NULL) i = 0; /* failure */ |