summaryrefslogtreecommitdiff
path: root/t/op/pwent.t
diff options
context:
space:
mode:
authorAlan Champion <achampio@lehman.com>1998-12-01 19:36:33 +0200
committerJarkko Hietaniemi <jhi@iki.fi>1998-12-01 16:11:50 +0000
commit6b3b4714657593d43895e4e0673982763593c886 (patch)
tree45065fea31b4d92687039f6bb12c6bedcda42915 /t/op/pwent.t
parent08d3cfafce2a221aa74dd7ea67b275e90512e4fc (diff)
downloadperl-6b3b4714657593d43895e4e0673982763593c886.tar.gz
Not OK: perl 5.00503 +MAINT_TRIAL_1 on sun4-solaris 2.3 (UNINSTALLED)
To: perlbug@perl.com Message-ID: <MLIST_9812011518.AA00005@lonhpov1.lehman.com> Skip NIS includes. p4raw-id: //depot/cfgperl@2431
Diffstat (limited to 't/op/pwent.t')
-rwxr-xr-xt/op/pwent.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/pwent.t b/t/op/pwent.t
index d562ec3fc4..4151ef26b3 100755
--- a/t/op/pwent.t
+++ b/t/op/pwent.t
@@ -35,6 +35,7 @@ my %seen;
while (<PW>) {
chomp;
+ next if /^\+/; # ignore NIS includes
my @s = split /:/;
my ($name_s, $passwd_s, $uid_s, $gid_s, $gcos_s, $home_s, $shell_s) = @s;
if (@s) {