Properly use these strings.

This commit is contained in:
Bradley M. Kuhn 2015-12-31 00:00:11 -08:00
parent 8cc77b8dec
commit 8b233299c8

View file

@ -57,9 +57,9 @@ my $wantList = <STDIN>;
chomp $wantList; chomp $wantList;
print "postal Address (. to end):\n"; print "postal Address (. to end):\n";
my $postal; my $postal = "";
while (my $line = <STDIN>) { while (my $line = <STDIN>) {
last if /^\s*\.\s*$/; last if $line =~ /^\s*\.\s*$/;
$postal .= $line; $postal .= $line;
} }