Not OK: perl 5.00503 +MAINT_TRIAL_1 on sun4-solaris 2.3 (UNINSTALLED)
Alan Champion [Tue, 1 Dec 1998 17:36:33 +0000 (19:36 +0200)]
To: perlbug@perl.com
Message-ID: <MLIST_9812011518.AA00005@lonhpov1.lehman.com>

Skip NIS includes.

p4raw-id: //depot/cfgperl@2431

t/op/pwent.t

index d562ec3..4151ef2 100755 (executable)
@@ -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) {