summaryrefslogtreecommitdiffstats
path: root/fdisk/fdisk.c
diff options
context:
space:
mode:
authorBenno Schulenberg2010-06-14 20:08:50 +0200
committerKarel Zak2010-06-15 12:53:48 +0200
commit4911d2bc4f380001faf6707e3004be15e6b67a72 (patch)
treea6d250d9fb171c5014ad077bdb1630da3046845e /fdisk/fdisk.c
parentchrt: add --verbose to man page, correct -V for --version, alphabetize (diff)
downloadkernel-qcow2-util-linux-4911d2bc4f380001faf6707e3004be15e6b67a72.tar.gz
kernel-qcow2-util-linux-4911d2bc4f380001faf6707e3004be15e6b67a72.tar.xz
kernel-qcow2-util-linux-4911d2bc4f380001faf6707e3004be15e6b67a72.zip
fdisk: untangle the reporting of deprecated mode and unit
Translatable messages should not be split into parts that are conditionally concatenated. Preferably they should each form a complete message. Signed-off-by: Benno Schulenberg <bensberg@justemail.net> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'fdisk/fdisk.c')
-rw-r--r--fdisk/fdisk.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c
index 0126e67b5..8f48a61af 100644
--- a/fdisk/fdisk.c
+++ b/fdisk/fdisk.c
@@ -796,18 +796,12 @@ warn_alignment(void) {
"the physical sector size. Aligning to a physical sector (or optimal\n"
"I/O) size boundary is recommended, or performance may be impacted.\n"));
- if (dos_compatible_flag) {
+ if (dos_compatible_flag)
fprintf(stderr, _("\n"
"WARNING: DOS-compatible mode is deprecated. It's strongly recommended to\n"
-" switch off the mode (command 'c')"));
-
- if (display_in_cyl_units)
- fprintf(stderr, _(" and change display units to\n"
-" sectors (command 'u').\n"));
- else
- fprintf(stderr, ".\n");
+" switch off the mode (with command 'c')."));
- } else if (display_in_cyl_units)
+ if (display_in_cyl_units)
fprintf(stderr, _("\n"
"WARNING: cylinders as display units are deprecated. Use command 'u' to\n"
" change units to sectors.\n"));