[BACK]Return to auth-options.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/auth-options.c between version 1.57 and 1.57.2.1

version 1.57, 2012/12/02 20:46:11 version 1.57.2.1, 2013/11/08 05:52:21
Line 237 
Line 237 
                         auth_debug_add("Adding to environment: %.900s", s);                          auth_debug_add("Adding to environment: %.900s", s);
                         debug("Adding to environment: %.900s", s);                          debug("Adding to environment: %.900s", s);
                         opts++;                          opts++;
                         new_envstring = xmalloc(sizeof(struct envstring));                          new_envstring = xcalloc(1, sizeof(struct envstring));
                         new_envstring->s = s;                          new_envstring->s = s;
                         new_envstring->next = custom_environment;                          new_envstring->next = custom_environment;
                         custom_environment = new_envstring;                          custom_environment = new_envstring;

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.57.2.1