From: Jarkko Hietaniemi Date: Sun, 29 Nov 1998 10:33:40 +0000 (+0000) Subject: Better NetInfo behaviour. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa2401440200f95c6f97edeae40977a0d02d3916;p=p5sagit%2Fp5-mst-13.2.git Better NetInfo behaviour. p4raw-id: //depot/cfgperl@2382 --- diff --git a/t/op/grent.t b/t/op/grent.t index e0cd7a8..2e5aaa9 100755 --- a/t/op/grent.t +++ b/t/op/grent.t @@ -9,9 +9,9 @@ BEGIN { $where = $GR; - if (-x "/usr/bin/nidump") { + if (-x "/usr/bin/nidump") { # nidump is not just NeXT/OpenStep if (open(GR, "nidump group . |")) { - $where = "NetInfo"; + $where = "NetInfo group"; } else { print "1..0\n"; exit 0; diff --git a/t/op/pwent.t b/t/op/pwent.t index 1365588..1dcad26 100755 --- a/t/op/pwent.t +++ b/t/op/pwent.t @@ -9,9 +9,9 @@ BEGIN { $where = $PW; - if (-x "/usr/bin/nidump") { + if (-x "/usr/bin/nidump") { # nidump is not just NeXT/OpenStep if (open(PW, "nidump passwd . |")) { - $where = "NetInfo"; + $where = "NetInfo passwd"; } else { print "1..0\n"; exit 0;