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

Diff for /src/usr.bin/ssh/servconf.c between version 1.89 and 1.90

version 1.89, 2001/08/16 19:18:34 version 1.90, 2001/11/11 13:02:31
Line 212 
Line 212 
                 options->client_alive_count_max = 3;                  options->client_alive_count_max = 3;
         if (options->authorized_keys_file == NULL)          if (options->authorized_keys_file == NULL)
                 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;                  options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
         if (options->authorized_keys_file2 == NULL)          if (options->authorized_keys_file2 == NULL) {
                 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;                  /* authorized_keys_file2 falls back to authorized_keys_file */
                   if (options->authorized_keys_file != NULL)
                           options->authorized_keys_file2 = options->authorized_keys_file;
                   else
                           options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
           }
           if (options->authorized_keys_file == NULL)
                   options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
 }  }
   
 /* Keyword tokens. */  /* Keyword tokens. */

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90