Displaying 1 result from an estimated 1 matches for "only_passwd_auth".
2002 May 02
0
IRIX 6.5 + AFS/Kerberos Problems
...1 (bu21)
I found a "fix" for this in a post in the mailing list archive
indicating that there was a name conflict with the SGI libs which
could be worked around by modifying auth-passwd.c and auth.h as
follows:
auth-passwd.c:
--------------
at line 46: add line: #define ONLY_PASSWD_AUTH
(just before: #include "auth.h" )
auth.h
------
make include of krb.h conditional (starts at line 100):
#ifdef KRB4
new--> #ifndef ONLY_PASSWD_AUTH
#include <krb.h>
int auth_krb4(Authctxt *, KTEXT, char **);
int auth_krb4_password(Authctxt *, const char...