[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.37 and 1.38

version 1.37, 2006/07/12 22:28:51 version 1.38, 2006/07/17 12:02:24
Line 136 
Line 136 
                                 forced_command = NULL;                                  forced_command = NULL;
                                 goto bad_option;                                  goto bad_option;
                         }                          }
                         forced_command[i] = 0;                          forced_command[i] = '\0';
                         auth_debug_add("Forced command: %.900s", forced_command);                          auth_debug_add("Forced command: %.900s", forced_command);
                         opts++;                          opts++;
                         goto next_option;                          goto next_option;
Line 168 
Line 168 
                                 xfree(s);                                  xfree(s);
                                 goto bad_option;                                  goto bad_option;
                         }                          }
                         s[i] = 0;                          s[i] = '\0';
                         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++;
Line 205 
Line 205 
                                 xfree(patterns);                                  xfree(patterns);
                                 goto bad_option;                                  goto bad_option;
                         }                          }
                         patterns[i] = 0;                          patterns[i] = '\0';
                         opts++;                          opts++;
                         if (match_host_and_ip(remote_host, remote_ip,                          if (match_host_and_ip(remote_host, remote_ip,
                             patterns) != 1) {                              patterns) != 1) {
Line 250 
Line 250 
                                 xfree(patterns);                                  xfree(patterns);
                                 goto bad_option;                                  goto bad_option;
                         }                          }
                         patterns[i] = 0;                          patterns[i] = '\0';
                         opts++;                          opts++;
                         p = patterns;                          p = patterns;
                         host = hpdelim(&p);                          host = hpdelim(&p);
Line 298 
Line 298 
                                 forced_tun_device = -1;                                  forced_tun_device = -1;
                                 goto bad_option;                                  goto bad_option;
                         }                          }
                         tun[i] = 0;                          tun[i] = '\0';
                         forced_tun_device = a2tun(tun, NULL);                          forced_tun_device = a2tun(tun, NULL);
                         xfree(tun);                          xfree(tun);
                         if (forced_tun_device == SSH_TUNID_ERR) {                          if (forced_tun_device == SSH_TUNID_ERR) {

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38