Some misc. changes.

This commit is contained in:
freesource
2001-11-01 04:20:25 +00:00
parent c7eac0edfe
commit 5a8621791a
3 changed files with 5 additions and 8 deletions
+3 -3
View File
@@ -814,14 +814,14 @@ sub create_filesystem {
## Originally, this was -b 1024 switched with the inode approach.
if (sys("$main::makefs $device $fs_size") !~
/^0$/ ) {
$error = error("Can not $fs_type filesystem.");
$error = error("Cannot $fs_type filesystem.");
return "ERROR" if $error && $error eq "ERROR";
}
} else {
if (sys("$main::makefs $device $fs_size") !~
/^0$/ ) {
$error = error("Can not $fs_type filesystem.");
$error = error("Cannot $fs_type filesystem.");
return "ERROR" if $error && $error eq "ERROR";
}
}
@@ -990,7 +990,7 @@ sub create_filesystem {
if (
sys("/usr/lib/bootroot/$main::makefs -b $fs_size -d $mount_point -D $device_table $device") !~
/^0$/ ) {
$error = error("Can not $fs_type filesystem.");
$error = error("Cannot $fs_type filesystem.");
return "ERROR" if $error && $error eq "ERROR";
}