summaryrefslogtreecommitdiff
path: root/lib/ZMkAuth.c
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1997-10-25 17:47:11 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1997-10-25 17:47:11 +0000
commit2b03e82ddfe5797dab4a2811cb2755a2b7cc45b7 (patch)
tree337a1256ea163b161c0f66b3b33fe3d88af74fc0 /lib/ZMkAuth.c
parent304bb68ebcb9682d28b41d86d59e9ac5f9d7d4a3 (diff)
ZEPHYR_USES_KERBEROS -> HAVE_KRB4; ZEPHYR_USES_HESIOD -> HAVE_HESIOD
Diffstat (limited to 'lib/ZMkAuth.c')
-rw-r--r--lib/ZMkAuth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ZMkAuth.c b/lib/ZMkAuth.c
index 18d5014..8d0fc1f 100644
--- a/lib/ZMkAuth.c
+++ b/lib/ZMkAuth.c
@@ -18,14 +18,14 @@
static const char rcsid_ZMakeAuthentication_c[] = "$Id$";
#endif
-#ifdef ZEPHYR_USES_KERBEROS
+#ifdef HAVE_KRB4
#include <krb_err.h>
static long last_authent_time = 0L;
static KTEXT_ST last_authent;
#endif
Code_t ZResetAuthentication () {
-#ifdef ZEPHYR_USES_KERBEROS
+#ifdef HAVE_KRB4
last_authent_time = 0L;
#endif
return ZERR_NONE;
@@ -37,7 +37,7 @@ Code_t ZMakeAuthentication(notice, buffer, buffer_len, len)
int buffer_len;
int *len;
{
-#ifdef ZEPHYR_USES_KERBEROS
+#ifdef HAVE_KRB4
int result;
time_t now;
KTEXT_ST authent;