summaryrefslogtreecommitdiffstats
path: root/sys-utils/nsenter.c
diff options
context:
space:
mode:
authorSami Kerola2013-01-20 19:04:53 +0100
committerKarel Zak2013-01-25 15:37:22 +0100
commit8b7a7750dd8d13c978eac5042bed7b1aa974b9ba (patch)
treefe58deb73271d10554c5d56503a4685aabf8093d /sys-utils/nsenter.c
parentbuild-sys: add nsenter to gitignore (diff)
downloadkernel-qcow2-util-linux-8b7a7750dd8d13c978eac5042bed7b1aa974b9ba.tar.gz
kernel-qcow2-util-linux-8b7a7750dd8d13c978eac5042bed7b1aa974b9ba.tar.xz
kernel-qcow2-util-linux-8b7a7750dd8d13c978eac5042bed7b1aa974b9ba.zip
nsenter: adjust few error messages
The 'neither filename nor target' is changed to use errx() rather than err(), because the errno is indicating success at the time of fatal error which is wrong message for an user. The "cannot open %s" is same string as in other files, making translators to work less. Remaining changes aim to ease understanding what went wrong for a non-programmer audience. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'sys-utils/nsenter.c')
-rw-r--r--sys-utils/nsenter.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys-utils/nsenter.c b/sys-utils/nsenter.c
index 229350287..f06001bf9 100644
--- a/sys-utils/nsenter.c
+++ b/sys-utils/nsenter.c
@@ -95,7 +95,7 @@ static void open_target_fd(int *fd, const char *type, const char *path)
path = pathbuf;
}
if (!path)
- err(EXIT_FAILURE, _("No filename and no target pid supplied for %s"),
+ errx(EXIT_FAILURE, _("neither filename nor target pid supplied for %s"),
type);
if (*fd >= 0)
@@ -103,7 +103,7 @@ static void open_target_fd(int *fd, const char *type, const char *path)
*fd = open(path, O_RDONLY);
if (*fd < 0)
- err(EXIT_FAILURE, _("open of '%s' failed"), path);
+ err(EXIT_FAILURE, _("cannot open %s"), path);
}
static void open_namespace_fd(int nstype, const char *path)
@@ -271,7 +271,7 @@ int main(int argc, char *argv[])
if (nsfile->fd < 0)
continue;
if (setns(nsfile->fd, nsfile->nstype))
- err(EXIT_FAILURE, _("setns of '%s' failed"),
+ err(EXIT_FAILURE, _("reassociate to namespace '%s' failed"),
nsfile->name);
close(nsfile->fd);
nsfile->fd = -1;
@@ -281,13 +281,13 @@ int main(int argc, char *argv[])
if (root_fd >= 0 && wd_fd < 0) {
wd_fd = open(".", O_RDONLY);
if (wd_fd < 0)
- err(EXIT_FAILURE, _("open of . failed"));
+ err(EXIT_FAILURE, _("cannot open current working directory"));
}
/* Change the root directory */
if (root_fd >= 0) {
if (fchdir(root_fd) < 0)
- err(EXIT_FAILURE, _("fchdir to root_fd failed"));
+ err(EXIT_FAILURE, _("change directory by root file descriptor failed"));
if (chroot(".") < 0)
err(EXIT_FAILURE, _("chroot failed"));
@@ -299,7 +299,7 @@ int main(int argc, char *argv[])
/* Change the working directory */
if (wd_fd >= 0) {
if (fchdir(wd_fd) < 0)
- err(EXIT_FAILURE, _("fchdir to wd_fd failed"));
+ err(EXIT_FAILURE, _("change directory by working directory file descriptor failed"));
close(wd_fd);
wd_fd = -1;