]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: 130130
authorAndrew G. Morgan <morgan@kernel.org>
Mon, 5 Feb 2001 07:00:08 +0000 (07:00 +0000)
committerAndrew G. Morgan <morgan@kernel.org>
Mon, 5 Feb 2001 07:00:08 +0000 (07:00 +0000)
Purpose of commit: bugfix

Commit summary:
---------------
needed quotes around a possibly blank shell variable.

CHANGELOG
configure
configure.in

index b0c0b35e9c1acf9c2953743cb4351343eaff56db..30a57be5d5ac06efd3a29f3775f634123e4c5e41 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -35,6 +35,15 @@ Where you should replace XXXXX with a bug-id.
 0.75: please submit patches for this section with actual code/doc
       patches!
 
+                          ** WARNING **
+
+This release contains backwardly incompatible changes to
+libpam. Prior versions were buggy - see bugfix for Bug 129775.
+
+                          ** WARNING **
+
+* quoted the $CRACKLIB_DICTPATH test in configure.in (Bug 130130 -
+  agmorgan).
 * improved handling of the setcred/close_session and update chauthtok
   stack. *Warning* This is a backwardly incompatable change, but 'more
   sane' than before. (Bug 129775 - agmorgan).
index 9f576f2cb6f3640a648a7deeee2c81d5f1b82fb9..74224ed0668aee452095950dc8ae58efec52c1f7 100755 (executable)
--- a/configure
+++ b/configure
@@ -2186,7 +2186,7 @@ for d in $DICT_DIR_CANDIDATES ; do
               fi
       done
 done
-if test -z $CRACKLIB_DICTPATH ; then
+if test -z "$CRACKLIB_DICTPATH" ; then
       echo "$ac_t""none found" 1>&6
 else
       echo "$ac_t""$CRACKLIB_DICTPATH" 1>&6
index 69831bfc6c0115c4cb68b699bb0cbead403f899e..a1d501dc53ba8b4d090ae93be03fb2a14e186f1a 100644 (file)
@@ -229,7 +229,7 @@ for d in $DICT_DIR_CANDIDATES ; do
               fi
       done
 done
-if test -z $CRACKLIB_DICTPATH ; then
+if test -z "$CRACKLIB_DICTPATH" ; then
       AC_MSG_RESULT(none found)
 else
       AC_MSG_RESULT($CRACKLIB_DICTPATH)