summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/kdc/ChangeLog3
-rw-r--r--src/kdc/configure.in3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/kdc/ChangeLog b/src/kdc/ChangeLog
index 039703627..89520df5b 100644
--- a/src/kdc/ChangeLog
+++ b/src/kdc/ChangeLog
@@ -1,5 +1,8 @@
2000-03-01 Tom Yu <tlyu@mit.edu>
+ * configure.in: Fix --enable-kdc-replay-cache to actually default
+ to "yes".
+
* kdc_preauth.c (verify_sam_response): Declare and set rc_lifetime
for real.
diff --git a/src/kdc/configure.in b/src/kdc/configure.in
index b20ccf282..f9b9aae49 100644
--- a/src/kdc/configure.in
+++ b/src/kdc/configure.in
@@ -57,8 +57,7 @@ AC_ARG_ENABLE([kdc-replay-cache],
[ --enable-kdc-replay-cache check for replayed/retransmitted KDC requests
(recommended for replay attack detection
when hardware preauthentication is in use)
- --disable-kdc-replay-cache omit replay detection],
-enableval=yes)dnl
+ --disable-kdc-replay-cache omit replay detection], , enableval=yes)dnl
if test "$enableval" = yes ; then
AC_DEFINE(USE_RCACHE)
else