[ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
[p5sagit/p5-mst-13.2.git] / t / op / pwent.t
index 0f67eb4..c09d7c2 100755 (executable)
@@ -71,7 +71,8 @@ my %seen;
 setpwent();
 while (<PW>) {
     chomp;
-    my @s = split /:/;
+    # LIMIT -1 so that users with empty shells don't fall off
+    my @s = split /:/, $_, -1;
     my ($name_s, $passwd_s, $uid_s, $gid_s, $gcos_s, $home_s, $shell_s) = @s;
     next if /^\+/; # ignore NIS includes
     if (@s) {