* aclocal.m4 (AC_CHECK_DBM_PROTO): Correct to use correct cache
authorEzra Peisach <epeisach@mit.edu>
Thu, 13 Jun 1996 02:15:55 +0000 (02:15 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 13 Jun 1996 02:15:55 +0000 (02:15 +0000)
variable in test.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8347 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index ff44762e36ffbc78d69112c8e2bf550fe34b65b2..a63e1fe09fd89107802eb67785f0944ebe47ae55 100644 (file)
@@ -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
index 8006a6fe5f1f6f082efe92520a81b699881ed683..bb5c20cf6e0a0c7f89e1539199e2b0fb600990ab 100644 (file)
@@ -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