[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.373 and 1.374

version 1.373, 2013/02/22 22:09:01 version 1.374, 2013/03/08 06:32:58
Line 645 
Line 645 
          * file if the user specifies a config file on the command line.           * file if the user specifies a config file on the command line.
          */           */
         if (config != NULL) {          if (config != NULL) {
                 if (!read_config_file(config, host, &options, SSHCONF_USERCONF))                  if (strcasecmp(config, "none") != 0 &&
                       !read_config_file(config, host, &options, SSHCONF_USERCONF))
                         fatal("Can't open user config file %.100s: "                          fatal("Can't open user config file %.100s: "
                             "%.100s", config, strerror(errno));                              "%.100s", config, strerror(errno));
         } else {          } else {

Legend:
Removed from v.1.373  
changed lines
  Added in v.1.374