Setup automator: Fix bug in password comparison. Closes: #517654
authorJoey Hess <joey@gnu.kitenet.net>
Sun, 1 Mar 2009 20:01:08 +0000 (15:01 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Sun, 1 Mar 2009 20:01:08 +0000 (15:01 -0500)
IkiWiki/Setup/Automator.pm
debian/changelog

index b63c8e2454fdf683e56f5e9a00c9588ce7b9dfa4..7d9eca3afef7f929edfb8a1c4ddc1da2fc3be875 100644 (file)
@@ -120,7 +120,7 @@ sub import (@) {
                        print "Confirm password: ";
                        chomp($password2=<STDIN>);
 
-                       last if  $password2 ne $password;
+                       last if $password2 eq $password;
 
                        print "Password mismatch.\n\n";
                }
index 4e62b0971370735ee1902da2e046fa19502fe436..82445e8376e5a9a8917421a82623197a4f8a59d2 100644 (file)
@@ -1,3 +1,9 @@
+ikiwiki (3.06) UNRELEASED; urgency=low
+
+  * Setup automator: Fix bug in password comparison. Closes: #517654
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 01 Mar 2009 15:00:39 -0500
+
 ikiwiki (3.05) unstable; urgency=low
 
   * debhelper v7(.0.50); rules file minimisation.