Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/dist/pdisk improved wording on explanation for disabling lin...
details: https://anonhg.NetBSD.org/src/rev/31a368a1207d
branches: trunk
changeset: 536129:31a368a1207d
user: dbj <dbj%NetBSD.org@localhost>
date: Sun Sep 08 23:25:43 2002 +0000
description:
improved wording on explanation for disabling linux max partition warning.
diffstat:
dist/pdisk/pdisk.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (39 lines):
diff -r a06e99a81695 -r 31a368a1207d dist/pdisk/pdisk.c
--- a/dist/pdisk/pdisk.c Sun Sep 08 23:18:11 2002 +0000
+++ b/dist/pdisk/pdisk.c Sun Sep 08 23:25:43 2002 +0000
@@ -518,7 +518,7 @@
printf("Edit %s -\n", name);
-#if 0 /* this check has been removed in linux prior to linux fdisk-0.1 */
+#if 0 /* this check is not found in linux fdisk-0.1 */
if (map != NULL && map->blocks_in_map > MAX_LINUX_MAP) {
error(-1, "Map contains more than %d blocks - Linux may have trouble", MAX_LINUX_MAP);
}
@@ -654,7 +654,7 @@
}
if (get_type == 0) {
add_partition_to_map(name, kUnixType, base, length, map);
-#if 0 /* this check has been removed in linux prior to linux fdisk-0.1 */
+#if 0 /* this check is not found in linux fdisk-0.1 */
if (map->blocks_in_map > MAX_LINUX_MAP) {
error(-1, "Map contains more than %d blocks - Linux may have trouble", MAX_LINUX_MAP);
}
@@ -673,7 +673,7 @@
goto xit2;
}
add_partition_to_map(name, type_name, base, length, map);
-#if 0 /* this check has been removed in linux prior to linux fdisk-0.1 */
+#if 0 /* this check is not found in linux fdisk-0.1 */
if (map->blocks_in_map > MAX_LINUX_MAP) {
error(-1, "Map contains more than %d blocks - Linux may have trouble", MAX_LINUX_MAP);
}
@@ -849,7 +849,7 @@
bad_input("The map is not writeable.");
return;
}
-#if 0 /* this check has been removed in linux prior to linux fdisk-0.1 */
+#if 0 /* this check is not found in linux fdisk-0.1 */
if (map->blocks_in_map > MAX_LINUX_MAP) {
error(-1, "Map contains more than %d blocks - Linux may have trouble", MAX_LINUX_MAP);
}
Home |
Main Index |
Thread Index |
Old Index