summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2003-04-09 12:00:38 +0000
committerDamien Miller <djm@cvs.openbsd.org>2003-04-09 12:00:38 +0000
commit83b0ca8228b88c1b3701d93bc41857131f62d8e0 (patch)
treeb1b2dddada2f76c0f577369d8e2a37cce3cc9a57 /usr.bin
parentccf0be927849eb537ca282b2979027ec408513d5 (diff)
strip trailing whitespace from config lines before parsing. Fixes bz 528;
ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/readconf.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c
index 8311dc17976..871415952f3 100644
--- a/usr.bin/ssh/readconf.c
+++ b/usr.bin/ssh/readconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.105 2003/04/02 09:48:07 markus Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.106 2003/04/09 12:00:37 djm Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -280,6 +280,13 @@ process_config_line(Options *options, const char *host,
u_short fwd_port, fwd_host_port;
char sfwd_host_port[6];
+ /* Strip trailing whitespace */
+ for(len = strlen(line) - 1; len > 0; len--) {
+ if (strchr(WHITESPACE, line[len]) == NULL)
+ break;
+ line[len] = '\0';
+ }
+
s = line;
/* Get the keyword. (Each line is supposed to begin with a keyword). */
keyword = strdelim(&s);