From: Andrew G. Morgan Date: Mon, 5 Feb 2001 07:00:08 +0000 (+0000) Subject: Relevant BUGIDs: 130130 X-Git-Tag: Linux-PAM-0-75~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af3c610c3e63f9be8e33163c2a8063d1e295ea4f;p=linux-pam Relevant BUGIDs: 130130 Purpose of commit: bugfix Commit summary: --------------- needed quotes around a possibly blank shell variable. --- diff --git a/CHANGELOG b/CHANGELOG index b0c0b35e..30a57be5 100644 --- 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). diff --git a/configure b/configure index 9f576f2c..74224ed0 100755 --- 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 diff --git a/configure.in b/configure.in index 69831bfc..a1d501dc 100644 --- a/configure.in +++ b/configure.in @@ -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)