summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/aclocal.m42
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ff44762e3..a63e1fe09 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jun 12 15:27:14 1996 Ezra Peisach <epeisach@kangaroo.mit.edu>
+
+ * aclocal.m4 (AC_CHECK_DBM_PROTO): Correct to use correct cache
+ variable in test.
+
Wed Jun 12 19:41:12 1996 Tom Yu <tlyu@voltage-multiplier.mit.edu>
* aclocal.m4: use new AC_OUTPUT syntax for constructing
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 8006a6fe5..bb5c20cf6 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1075,7 +1075,7 @@ int $2();],
[$2();],
eval krb5_cv_missing_$2_prototype=yes,
eval krb5_cv_missing_$2_prototype=no)))
- if eval "test \"`echo '$krb5_cv_missing_'$1_prototype`\" = yes"; then
+ if eval "test \"`echo '$krb5_cv_missing_'$2_prototype`\" = yes"; then
AC_MSG_RESULT(yes)
$4
else