diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-06-10 23:45:41 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-06-11 09:50:06 +1000 |
commit | 89a85d724765b6b82e0135ee5a1181fdcccea9c6 (patch) | |
tree | fb74d1e2302eee867a34375831a5627c437ae690 /readconf.c | |
parent | acf4260f0951f89c64e1ebbc4c92f451768871ad (diff) |
upstream: unbreak SendEnv; patch from tb@
OpenBSD-Commit-ID: fc808daced813242563b80976e1478de95940056
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 8ff23c05c..8d2029547 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.290 2018/06/09 03:01:12 djm Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.291 2018/06/10 23:45:41 djm 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 |
@@ -1404,7 +1404,7 @@ parse_keytypes: | |||
1404 | filename, linenum); | 1404 | filename, linenum); |
1405 | options->send_env = xrecallocarray( | 1405 | options->send_env = xrecallocarray( |
1406 | options->send_env, options->num_send_env, | 1406 | options->send_env, options->num_send_env, |
1407 | options->num_send_env, | 1407 | options->num_send_env + 1, |
1408 | sizeof(*options->send_env)); | 1408 | sizeof(*options->send_env)); |
1409 | options->send_env[options->num_send_env++] = | 1409 | options->send_env[options->num_send_env++] = |
1410 | xstrdup(arg); | 1410 | xstrdup(arg); |