summaryrefslogtreecommitdiffstats
path: root/mount/swapon.c
diff options
context:
space:
mode:
authorKarel Zak2009-12-10 13:04:41 +0100
committerKarel Zak2009-12-10 13:04:41 +0100
commit04c944419df0f549129f5af62d38823164f2e037 (patch)
treebf42420e5e2dca6c7c4565d0ce0b9622e6f9363d /mount/swapon.c
parentlib: bug (typo) in function MD5Final() (diff)
downloadkernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.tar.gz
kernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.tar.xz
kernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.zip
po: fix msgid bugs
Reported-by: Petr Pisar <petr.pisar@atlas.cz> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'mount/swapon.c')
-rw-r--r--mount/swapon.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mount/swapon.c b/mount/swapon.c
index a66d59d6d..75ba86533 100644
--- a/mount/swapon.c
+++ b/mount/swapon.c
@@ -347,12 +347,12 @@ swap_get_size(const char *hdr, const char *devname, unsigned int pagesize)
last_page = swab32(s->last_page);
}
if (verbose)
- warnx(_("%s: found %sswap v%d signature string"
- " for %d KiB PAGE_SIZE\n"),
+ warnx(_("%s: found swap signature: version %d, "
+ "page-size %d, %s byte order"),
devname,
- flip ? "other-endian " : "",
swap_version,
- pagesize / 1024);
+ pagesize / 1024,
+ flip ? _("different") : _("same"));
return (last_page + 1) * pagesize;
}