[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.8.2.1 and 1.8.2.2

version 1.8.2.1, 2002/03/07 17:37:46 version 1.8.2.2, 2002/05/17 00:03:23
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.8.2.1  
changed lines
  Added in v.1.8.2.2