aboutsummaryrefslogtreecommitdiff
path: root/sbin/growfs
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2016-09-26 14:01:41 +0000
committerRuslan Bukin <br@FreeBSD.org>2016-09-26 14:01:41 +0000
commit5b1b1405e3fb8883d5d2b2749eecd9115206c07d (patch)
tree8f207c65bef6a5270a382b6505afcb80a11597f9 /sbin/growfs
parent60e5fa86df18c1ee5e48b8570e1496f346e86054 (diff)
Notes
Diffstat (limited to 'sbin/growfs')
-rwxr-xr-xsbin/growfs/tests/legacy_test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/growfs/tests/legacy_test.pl b/sbin/growfs/tests/legacy_test.pl
index 7316951c92b3..727960290d1a 100755
--- a/sbin/growfs/tests/legacy_test.pl
+++ b/sbin/growfs/tests/legacy_test.pl
@@ -14,7 +14,7 @@ END { system "mdconfig -du$unit" if defined $unit };
sub setsize {
my ($partszMB, $unitszMB) = @_;
- open my $fd, "|-", "disklabel -R md$unit /dev/stdin" or die;
+ open my $fd, "|-", "bsdlabel -R md$unit /dev/stdin" or die;
print $fd "a: ", ($partszMB * BLKS_PER_MB), " 0 4.2BSD 1024 8192\n";
print $fd "c: ", ($unitszMB * BLKS_PER_MB), " 0 unused 0 0\n";
close $fd;