You need to apply s/getpwgid/getpwuid/g on that file. Sorry 'bout that.
Cut and paste strikes again.
--tom
p5p-msgid: <
199612201145.
EAA27860@mox.perl.com>
sub getpwent ( ) { populate(CORE::getpwent()) }
sub getpwnam ($) { populate(CORE::getpwnam(shift)) }
-sub getpwgid ($) { populate(CORE::getpwgid(shift)) }
-sub getpw ($) { ($_[0] =~ /^\d+/) ? &getpwgid : &getpwnam }
+sub getpwuid ($) { populate(CORE::getpwuid(shift)) }
+sub getpw ($) { ($_[0] =~ /^\d+/) ? &getpwuid : &getpwnam }
1;
__END__