diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-19 14:43:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-19 14:43:38 +0000 |
commit | bd852076b9f6600d039e75d646a6965b5b092606 (patch) | |
tree | ea133ee61be3857f3d7fa4c67302c52eb268391c /util-linux/fdisk_aix.c | |
parent | de8a6a01d84ebb09a333104bf0fd5f6e251d9eb7 (diff) | |
download | busybox-w32-bd852076b9f6600d039e75d646a6965b5b092606.tar.gz busybox-w32-bd852076b9f6600d039e75d646a6965b5b092606.tar.bz2 busybox-w32-bd852076b9f6600d039e75d646a6965b5b092606.zip |
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 2402e294a..8095fc4ab 100644 --- a/util-linux/fdisk_aix.c +++ b/util-linux/fdisk_aix.c | |||
@@ -39,18 +39,15 @@ static short aix_volumes = 1; | |||
39 | static void | 39 | static void |
40 | aix_info(void) | 40 | aix_info(void) |
41 | { | 41 | { |
42 | puts( | 42 | puts("\n" |
43 | _("\n\tThere is a valid AIX label on this disk.\n" | 43 | "There is a valid AIX label on this disk.\n" |
44 | "\tUnfortunately Linux cannot handle these\n" | 44 | "Unfortunately Linux cannot handle these disks at the moment.\n" |
45 | "\tdisks at the moment. Nevertheless some\n" | 45 | "Nevertheless some advice:\n" |
46 | "\tadvice:\n" | 46 | "1. fdisk will destroy its contents on write.\n" |
47 | "\t1. fdisk will destroy its contents on write.\n" | 47 | "2. Be sure that this disk is NOT a still vital part of a volume group.\n" |
48 | "\t2. Be sure that this disk is NOT a still vital\n" | 48 | " (Otherwise you may erase the other disks as well, if unmirrored.)\n" |
49 | "\t part of a volume group. (Otherwise you may\n" | 49 | "3. Before deleting this physical volume be sure to remove the disk\n" |
50 | "\t erase the other disks as well, if unmirrored.)\n" | 50 | " logically from your AIX machine. (Otherwise you become an AIXpert).\n" |
51 | "\t3. Before deleting this physical volume be sure\n" | ||
52 | "\t to remove the disk logically from your AIX\n" | ||
53 | "\t machine. (Otherwise you become an AIXpert).") | ||
54 | ); | 51 | ); |
55 | } | 52 | } |
56 | 53 | ||