From: Tom Yu Date: Wed, 1 Mar 2000 10:07:26 +0000 (+0000) Subject: * configure.in: Fix --enable-kdc-replay-cache to actually default X-Git-Tag: krb5-1.2-beta1~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=33ff3607385e2886dfe02b5be6b041bc06069a60;p=krb5.git * configure.in: Fix --enable-kdc-replay-cache to actually default to "yes". git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12092 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + * 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