diff options
author | Denis Vlasenko | 2007-03-19 14:43:38 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-19 14:43:38 +0000 |
commit | bd852076b9f6600d039e75d646a6965b5b092606 (patch) | |
tree | ea133ee61be3857f3d7fa4c67302c52eb268391c /util-linux/fdisk_aix.c | |
parent | de8a6a01d84ebb09a333104bf0fd5f6e251d9eb7 (diff) | |
download | busybox-bd852076b9f6600d039e75d646a6965b5b092606.zip busybox-bd852076b9f6600d039e75d646a6965b5b092606.tar.gz |
fdisk: get rid of _() macro.
Shorten some messages. Stop using stderr - anyone who tries
to use fdisk no-interactively is "strange" anyway.
Improve storage handling in bsd module.
text data bss dec hex filename
728112 1488 33788 763388 ba5fc busybox.t0/busybox
727248 1488 33372 762108 ba0fc busybox.t1/busybox
Diffstat (limited to 'util-linux/fdisk_aix.c')
-rw-r--r-- | util-linux/fdisk_aix.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/util-linux/fdisk_aix.c b/util-linux/fdisk_aix.c index 2402e29..8095fc4 100644 --- a/util-linux/fdisk_aix.c +++ b/util-linux/fdisk_aix.c @@ -39,18 +39,15 @@ static short aix_volumes = 1; static void aix_info(void) { - puts( - _("\n\tThere is a valid AIX label on this disk.\n" - "\tUnfortunately Linux cannot handle these\n" - "\tdisks at the moment. Nevertheless some\n" - "\tadvice:\n" - "\t1. fdisk will destroy its contents on write.\n" - "\t2. Be sure that this disk is NOT a still vital\n" - "\t part of a volume group. (Otherwise you may\n" - "\t erase the other disks as well, if unmirrored.)\n" - "\t3. Before deleting this physical volume be sure\n" - "\t to remove the disk logically from your AIX\n" - "\t machine. (Otherwise you become an AIXpert).") + puts("\n" +"There is a valid AIX label on this disk.\n" +"Unfortunately Linux cannot handle these disks at the moment.\n" +"Nevertheless some advice:\n" +"1. fdisk will destroy its contents on write.\n" +"2. Be sure that this disk is NOT a still vital part of a volume group.\n" +" (Otherwise you may erase the other disks as well, if unmirrored.)\n" +"3. Before deleting this physical volume be sure to remove the disk\n" +" logically from your AIX machine. (Otherwise you become an AIXpert).\n" ); } |