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

Diff for /src/usr.bin/ssh/auth2-chall.c between version 1.4.2.3 and 1.4.2.4

version 1.4.2.3, 2002/03/09 00:20:43 version 1.4.2.4, 2002/06/02 22:56:09
Line 310 
Line 310 
         userauth_finish(authctxt, authenticated, method);          userauth_finish(authctxt, authenticated, method);
         xfree(method);          xfree(method);
 }  }
   
   void
   privsep_challenge_enable(void)
   {
   #ifdef BSD_AUTH
           extern KbdintDevice mm_bsdauth_device;
   #endif
   #ifdef SKEY
           extern KbdintDevice mm_skey_device;
   #endif
           /* As long as SSHv1 has devices[0] hard coded this is fine */
   #ifdef BSD_AUTH
           devices[0] = &mm_bsdauth_device;
   #else
   #ifdef SKEY
           devices[0] = &mm_skey_device;
   #endif
   #endif
   }

Legend:
Removed from v.1.4.2.3  
changed lines
  Added in v.1.4.2.4