Complete '_' hack.

This commit is contained in:
Alexey Zelkin 2002-02-07 19:32:40 +00:00
parent dca7443ba8
commit b5ed0bcd23
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90359

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;
}