mirror of git://anongit.mindrot.org/openssh.git
- Add some missing ifdefs to auth2.c
This commit is contained in:
parent
0e489dc5ae
commit
1cead2c02c
|
@ -18,6 +18,7 @@
|
||||||
<andre.lucas@dial.pipex.com>
|
<andre.lucas@dial.pipex.com>
|
||||||
- Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
|
- Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
|
||||||
<gd@hilb1.medat.de>
|
<gd@hilb1.medat.de>
|
||||||
|
- Add some missing ifdefs to auth2.c
|
||||||
|
|
||||||
20000430
|
20000430
|
||||||
- Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
|
- Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
|
||||||
|
|
4
auth2.c
4
auth2.c
|
@ -93,8 +93,12 @@ void
|
||||||
do_authentication2()
|
do_authentication2()
|
||||||
{
|
{
|
||||||
/* turn off skey/kerberos, not supported by SSH2 */
|
/* turn off skey/kerberos, not supported by SSH2 */
|
||||||
|
#ifdef SKEY
|
||||||
options.skey_authentication = 0;
|
options.skey_authentication = 0;
|
||||||
|
#endif
|
||||||
|
#ifdef KRB4
|
||||||
options.kerberos_authentication = 0;
|
options.kerberos_authentication = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
dispatch_init(&protocol_error);
|
dispatch_init(&protocol_error);
|
||||||
dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
|
dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
|
||||||
|
|
Loading…
Reference in New Issue