aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Setup
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-03-01 15:01:08 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-03-01 15:01:08 -0500
commit062f87ce3807155ff57bf316685f9bb500726867 (patch)
treebc6fda1e3cb79b7bae417c4ff5b7d48a1baf4635 /IkiWiki/Setup
parent0bd54afd98e57bfcca4360a0751a362e39d3e02a (diff)
downloadikiwiki-062f87ce3807155ff57bf316685f9bb500726867.tar
ikiwiki-062f87ce3807155ff57bf316685f9bb500726867.tar.gz
Setup automator: Fix bug in password comparison. Closes: #517654
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r--IkiWiki/Setup/Automator.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm
index b63c8e245..7d9eca3af 100644
--- a/IkiWiki/Setup/Automator.pm
+++ b/IkiWiki/Setup/Automator.pm
@@ -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";
}