Complete '_' hack.

This commit is contained in:
phantom 2002-02-07 19:32:40 +00:00
parent acf85e1161
commit 1fc1e7448f

View File

@ -57,6 +57,7 @@ while (<ACCESS>) {
chomp;
next if /^#/;
($accuser, undef) = split /\s/;
$accuser =~ s/_//g;
print "access user: $accuser\n" if $debug;
$access{$accuser} = 1;
}