From: Isaac Good Date: Wed, 7 Dec 2016 02:22:39 +0000 (-0800) Subject: Support multiple spaces between tag and password X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=86bf168817775db2359e45c6672930471c67c08e;p=irssi-scripts.irssi.org.git Support multiple spaces between tag and password --- diff --git a/scripts/ident.pl b/scripts/ident.pl index 0c0de96..1250825 100644 --- a/scripts/ident.pl +++ b/scripts/ident.pl @@ -35,7 +35,7 @@ sub LoadPasswords { { chomp $line; next unless ($line); - my ($tag, $password) = split(/ /, $line, 2); + my ($tag, $password) = split(/ */, $line, 2); next unless ($tag and $password); $pw{$tag} = $password; }