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

Diff for /src/usr.bin/ssh/readconf.c between version 1.108 and 1.109

version 1.108, 2003/05/15 01:48:10 version 1.109, 2003/05/15 04:08:44
Line 842 
Line 842 
         if (options->challenge_response_authentication == -1)          if (options->challenge_response_authentication == -1)
                 options->challenge_response_authentication = 1;                  options->challenge_response_authentication = 1;
         if (options->kerberos_authentication == -1)          if (options->kerberos_authentication == -1)
   #if defined(KRB4) || defined(KRB5)
                 options->kerberos_authentication = 1;                  options->kerberos_authentication = 1;
   #else
                   options->kerberos_authentication = 0;
   #endif
         if (options->kerberos_tgt_passing == -1)          if (options->kerberos_tgt_passing == -1)
   #if defined(KRB4) || defined(KRB5)
                 options->kerberos_tgt_passing = 1;                  options->kerberos_tgt_passing = 1;
   #else
                   options->kerberos_tgt_passing = 0;
   #endif
         if (options->afs_token_passing == -1)          if (options->afs_token_passing == -1)
   #if defined(AFS)
                 options->afs_token_passing = 1;                  options->afs_token_passing = 1;
   #else
                   options->afs_token_passing = 0;
   #endif
         if (options->password_authentication == -1)          if (options->password_authentication == -1)
                 options->password_authentication = 1;                  options->password_authentication = 1;
         if (options->kbd_interactive_authentication == -1)          if (options->kbd_interactive_authentication == -1)

Legend:
Removed from v.1.108  
changed lines
  Added in v.1.109