summaryrefslogtreecommitdiff
path: root/auth-options.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-options.c b/auth-options.c
index b485f8d24..b370b5be6 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-options.c,v 1.60 2013/11/02 22:34:01 markus Exp $ */ 1/* $OpenBSD: auth-options.c,v 1.61 2013/11/08 00:39:14 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
@@ -235,7 +235,7 @@ auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum)
235 auth_debug_add("Adding to environment: %.900s", s); 235 auth_debug_add("Adding to environment: %.900s", s);
236 debug("Adding to environment: %.900s", s); 236 debug("Adding to environment: %.900s", s);
237 opts++; 237 opts++;
238 new_envstring = xmalloc(sizeof(struct envstring)); 238 new_envstring = xcalloc(1, sizeof(struct envstring));
239 new_envstring->s = s; 239 new_envstring->s = s;
240 new_envstring->next = custom_environment; 240 new_envstring->next = custom_environment;
241 custom_environment = new_envstring; 241 custom_environment = new_envstring;