[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.16 and 1.17

version 1.16, 2002/01/13 17:57:37 version 1.17, 2002/03/18 17:50:31
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.16  
changed lines
  Added in v.1.17