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

Diff for /src/usr.bin/ssh/ssh.c between version 1.194 and 1.195

version 1.194, 2003/06/12 19:12:03 version 1.195, 2003/07/02 20:37:48
Line 586 
Line 586 
         if (options.hostname != NULL)          if (options.hostname != NULL)
                 host = options.hostname;                  host = options.hostname;
   
           /* force lowercase for hostkey matching */
           if (options.host_key_alias != NULL) {
                   for (p = options.host_key_alias; *p; p++)
                           if (isupper(*p))
                                   *p = tolower(*p);
           }
   
         if (options.proxy_command != NULL &&          if (options.proxy_command != NULL &&
             strcmp(options.proxy_command, "none") == 0)              strcmp(options.proxy_command, "none") == 0)
                 options.proxy_command = NULL;                  options.proxy_command = NULL;

Legend:
Removed from v.1.194  
changed lines
  Added in v.1.195