[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.4 and 1.5

version 1.4, 1999/09/29 18:16:20 version 1.5, 1999/09/29 22:08:13
Line 109 
Line 109 
     options->rsa_authentication = 1;      options->rsa_authentication = 1;
 #ifdef KRB4  #ifdef KRB4
   if (options->kerberos_authentication == -1)    if (options->kerberos_authentication == -1)
     options->kerberos_authentication = 1;      options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
   if (options->kerberos_or_local_passwd == -1)    if (options->kerberos_or_local_passwd == -1)
     options->kerberos_or_local_passwd = 0;      options->kerberos_or_local_passwd = 0;
   if (options->kerberos_ticket_cleanup == -1)    if (options->kerberos_ticket_cleanup == -1)
Line 119 
Line 119 
   if (options->kerberos_tgt_passing == -1)    if (options->kerberos_tgt_passing == -1)
     options->kerberos_tgt_passing = 0;      options->kerberos_tgt_passing = 0;
   if (options->afs_token_passing == -1)    if (options->afs_token_passing == -1)
     options->afs_token_passing = 1;      options->afs_token_passing = k_hasafs();
 #endif /* AFS */  #endif /* AFS */
   if (options->password_authentication == -1)    if (options->password_authentication == -1)
     options->password_authentication = 1;      options->password_authentication = 1;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5