From 86bf168817775db2359e45c6672930471c67c08e Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 6 Dec 2016 18:22:39 -0800 Subject: Support multiple spaces between tag and password --- scripts/ident.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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; } -- cgit v1.2.3