Unbreak OpenSSH for the KRB5-and-no-KRB4 case. Asking for KRB5 does

not imply that you want, need or have kerberosIV headers.
This commit is contained in:
Mark Murray 2001-06-15 08:12:31 +00:00
parent c864c67bad
commit 7e40a391bc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78263

View File

@ -97,9 +97,11 @@ int auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n);
*/
int auth_rsa_challenge_dialog(RSA *pk);
#ifdef KRB4
#include <krb.h>
#endif /* KRB4 */
#ifdef KRB5
#include <krb5.h>
#include <krb.h>
int auth_krb5(); /* XXX Doplnit prototypy */
int auth_krb5_tgt();
int krb5_init();