summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-03-05 11:22:50 +1100
committerDamien Miller <djm@mindrot.org>2005-03-05 11:22:50 +1100
commitf8e7accd01d216439bd76e2bd13e87f4bfa6eca2 (patch)
tree706699a63a115efdc42ff980a521eb88c778724c
parentb022b23584f72970c3028401e33577282371cfe7 (diff)
- djm@cvs.openbsd.org 2005/03/04 08:48:06
[readconf.c] fix SendEnv config parsing bug found by Roumen Petrov; ok dtucker@
-rw-r--r--ChangeLog5
-rw-r--r--readconf.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a1feae0..941843a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
- jmc@cvs.openbsd.org 2005/03/02 11:45:01
[ssh.1]
missing word;
+ - djm@cvs.openbsd.org 2005/03/04 08:48:06
+ [readconf.c]
+ fix SendEnv config parsing bug found by Roumen Petrov; ok dtucker@
20050302
- (djm) OpenBSD CVS sync:
@@ -2274,4 +2277,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.3690 2005/03/05 00:22:36 djm Exp $
+$Id: ChangeLog,v 1.3691 2005/03/05 00:22:50 djm Exp $
diff --git a/readconf.c b/readconf.c
index e50a4222..7173a8c2 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.136 2005/03/01 10:40:26 djm Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.137 2005/03/04 08:48:06 djm Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -775,6 +775,8 @@ parse_int:
if (strchr(arg, '=') != NULL)
fatal("%s line %d: Invalid environment name.",
filename, linenum);
+ if (!*activep)
+ continue;
if (options->num_send_env >= MAX_SEND_ENV)
fatal("%s line %d: too many send env.",
filename, linenum);