[Pkg-openldap-devel] r1406 - openldap/trunk/debian

vorlon at alioth.debian.org vorlon at alioth.debian.org
Sun Dec 18 19:05:20 UTC 2011


tags 635931 pending
thanks

Author: vorlon
Date: 2011-12-18 19:05:19 +0000 (Sun, 18 Dec 2011)
New Revision: 1406

Modified:
   openldap/trunk/debian/changelog
   openldap/trunk/debian/slapd.scripts-common
Log:
debian/slapd.scripts-common: quote the argument to slappasswd, to cope
with shell characters in the string.  Thanks to Nicolai Ehemann
<en at englightened.de> for the patch.  Closes: #635931.

Modified: openldap/trunk/debian/changelog
===================================================================
--- openldap/trunk/debian/changelog	2011-10-18 01:08:58 UTC (rev 1405)
+++ openldap/trunk/debian/changelog	2011-12-18 19:05:19 UTC (rev 1406)
@@ -1,3 +1,11 @@
+openldap (2.4.25-5) UNRELEASED; urgency=low
+
+  * debian/slapd.scripts-common: quote the argument to slappasswd, to cope
+    with shell characters in the string.  Thanks to Nicolai Ehemann
+    <en at englightened.de> for the patch.  Closes: #635931.
+
+ -- Steve Langasek <vorlon at debian.org>  Sun, 18 Dec 2011 11:01:09 -0800
+
 openldap (2.4.25-4) unstable; urgency=low
 
   * Drop explicit depends on libdb4.8, since we're now linking against

Modified: openldap/trunk/debian/slapd.scripts-common
===================================================================
--- openldap/trunk/debian/slapd.scripts-common	2011-10-18 01:08:58 UTC (rev 1405)
+++ openldap/trunk/debian/slapd.scripts-common	2011-12-18 19:05:19 UTC (rev 1406)
@@ -666,7 +666,7 @@
 # Create the password hash for the given password
 # Usage: hash=`create_password_hash "$password"`
 
-	slappasswd -s $1
+	slappasswd -s "$1"
 }
 
 # }}}




More information about the Pkg-openldap-devel mailing list