[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.141 and 1.142

version 1.141, 2001/08/29 23:27:23 version 1.142, 2001/09/03 20:58:33
Line 605 
Line 605 
          * 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) {
                 read_config_file(config, host, &options);                  if (!read_config_file(config, host, &options))
                           fatal("Can't open user config file %.100s: "
                               "%.100s", config, strerror(errno));
         } else  {          } else  {
                 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,                  snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
                     _PATH_SSH_USER_CONFFILE);                      _PATH_SSH_USER_CONFFILE);
   
                 /* Read systemwide configuration file. */                  /* Read systemwide configuration file. */
                 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);                  (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
                 read_config_file(buf, host, &options);                  (void)read_config_file(buf, host, &options);
         }          }
   
         /* Fill configuration defaults. */          /* Fill configuration defaults. */

Legend:
Removed from v.1.141  
changed lines
  Added in v.1.142