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

Diff for /src/usr.bin/ssh/Attic/sshconnect1.c between version 1.31 and 1.32

version 1.31, 2001/04/17 08:14:01 version 1.32, 2001/05/18 14:13:29
Line 616 
Line 616 
  * Note that the client code is not tied to s/key or TIS.   * Note that the client code is not tied to s/key or TIS.
  */   */
 int  int
 try_challenge_reponse_authentication(void)  try_challenge_response_authentication(void)
 {  {
         int type, i;          int type, i;
         int payload_len;          int payload_len;
Line 1024 
Line 1024 
         }          }
         /* Try challenge response authentication if the server supports it. */          /* Try challenge response authentication if the server supports it. */
         if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&          if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
             options.challenge_reponse_authentication && !options.batch_mode) {              options.challenge_response_authentication && !options.batch_mode) {
                 if (try_challenge_reponse_authentication())                  if (try_challenge_response_authentication())
                         return;                          return;
         }          }
         /* Try password authentication if the server supports it. */          /* Try password authentication if the server supports it. */

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32