diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-15 13:28:23 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-15 13:28:23 +0000 |
commit | fd79a3129eb4dcb07f0637d011a3da78406ccd08 (patch) | |
tree | e8072b1aae1e7b88558d37aba44e3d0dd975952a /sbin | |
parent | 44bc5da8729af5dfec20986a6778702cd3d8228f (diff) |
more writable spelling; torh
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pdisk/dump.c | 2 | ||||
-rw-r--r-- | sbin/pdisk/pdisk.c | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sbin/pdisk/dump.c b/sbin/pdisk/dump.c index 01d47fcdb2d..bd1bee0872b 100644 --- a/sbin/pdisk/dump.c +++ b/sbin/pdisk/dump.c @@ -388,7 +388,7 @@ show_data_structures(partition_map_header *map) printf("map %d blocks out of %d, media %lu blocks (%d byte blocks)\n", map->blocks_in_map, map->maximum_in_map, map->media_size, map->logical_block); - printf("Map is%s writeable", (map->writeable)?kStringEmpty:kStringNot); + printf("Map is%s writable", (map->writeable)?kStringEmpty:kStringNot); printf(", but%s changed\n", (map->changed)?kStringEmpty:kStringNot); printf("\n"); diff --git a/sbin/pdisk/pdisk.c b/sbin/pdisk/pdisk.c index a8e7800ba9d..d3fe0c88b05 100644 --- a/sbin/pdisk/pdisk.c +++ b/sbin/pdisk/pdisk.c @@ -657,7 +657,7 @@ do_create_partition(partition_map_header *map, int get_type) return; } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } // XXX add help feature (i.e. '?' in any argument routine prints help string) if (get_base_argument(&base, map) == 0) { @@ -765,7 +765,7 @@ do_rename_partition(partition_map_header *map) return; } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } if (get_number_argument("Partition number: ", &index, kDefault) == 0) { bad_input("Bad partition number"); @@ -802,7 +802,7 @@ do_change_type(partition_map_header *map) } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } if (get_number_argument("Partition number: ", &index, kDefault) == 0) { @@ -844,7 +844,7 @@ do_delete_partition(partition_map_header *map) return; } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } if (get_number_argument("Partition number: ", &index, kDefault) == 0) { bad_input("Bad partition number"); @@ -872,7 +872,7 @@ do_reorder(partition_map_header *map) return; } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } if (get_number_argument("Partition number: ", &old_index, kDefault) == 0) { bad_input("Bad partition number"); @@ -899,7 +899,7 @@ do_write_partition_map(partition_map_header *map) return; } if (map->writeable == 0) { - bad_input("The map is not writeable."); + bad_input("The map is not writable."); return; } printf("Writing the map destroys what was there before. "); @@ -1006,7 +1006,7 @@ do_change_map_size(partition_map_header *map) return; } if (!rflag && map->writeable == 0) { - printf("The map is not writeable.\n"); + printf("The map is not writable.\n"); } if (get_number_argument("New size: ", &size, kDefault) == 0) { bad_input("Bad size"); |