[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.59.2.1 and 1.60

version 1.59.2.1, 2013/11/08 01:33:56 version 1.60, 2013/11/02 22:34:01
Line 31 
Line 31 
 #include "auth-options.h"  #include "auth-options.h"
 #include "hostfile.h"  #include "hostfile.h"
 #include "auth.h"  #include "auth.h"
 #ifdef GSSAPI  
 #include "ssh-gss.h"  
 #endif  
 #include "monitor_wrap.h"  
   
 /* Flags set authorized_keys flags */  /* Flags set authorized_keys flags */
 int no_port_forwarding_flag = 0;  int no_port_forwarding_flag = 0;
Line 237 
Line 233 
                         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 = xcalloc(1, sizeof(struct envstring));                          new_envstring = xmalloc(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.59.2.1  
changed lines
  Added in v.1.60