[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.53.2.5 and 1.53.2.6

version 1.53.2.5, 2001/09/27 00:15:42 version 1.53.2.6, 2001/11/15 22:50:30
Line 210 
Line 210 
                 options->client_alive_interval = 0;                  options->client_alive_interval = 0;
         if (options->client_alive_count_max == -1)          if (options->client_alive_count_max == -1)
                 options->client_alive_count_max = 3;                  options->client_alive_count_max = 3;
           if (options->authorized_keys_file2 == NULL) {
                   /* 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)          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)  
                 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;  
 }  }
   
 /* Keyword tokens. */  /* Keyword tokens. */

Legend:
Removed from v.1.53.2.5  
changed lines
  Added in v.1.53.2.6