summaryrefslogtreecommitdiffstats
path: root/sys-utils/lsns.c
diff options
context:
space:
mode:
authorKarel Zak2015-12-01 13:50:51 +0100
committerKarel Zak2015-12-01 13:50:51 +0100
commit8ff3d5d077cc5d60db840836a219d83e8f3f99dc (patch)
tree1a5aacaf2336ff63988cab51c6cf76f4b53aadad /sys-utils/lsns.c
parentlsns: add details to the man page (diff)
downloadkernel-qcow2-util-linux-8ff3d5d077cc5d60db840836a219d83e8f3f99dc.tar.gz
kernel-qcow2-util-linux-8ff3d5d077cc5d60db840836a219d83e8f3f99dc.tar.xz
kernel-qcow2-util-linux-8ff3d5d077cc5d60db840836a219d83e8f3f99dc.zip
lsns: fix usage()
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'sys-utils/lsns.c')
-rw-r--r--sys-utils/lsns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/lsns.c b/sys-utils/lsns.c
index c1d649ae4..79189345a 100644
--- a/sys-utils/lsns.c
+++ b/sys-utils/lsns.c
@@ -80,14 +80,14 @@ struct colinfo {
/* columns descriptions */
static const struct colinfo infos[] = {
- [COL_NS] = { "NS", 10, SCOLS_FL_RIGHT, N_("command of the process holding the lock") },
+ [COL_NS] = { "NS", 10, SCOLS_FL_RIGHT, N_("namespace identifier (inode number)") },
[COL_TYPE] = { "TYPE", 5, 0, N_("kind of namespace") },
[COL_PATH] = { "PATH", 0, 0, N_("path to the namespace")},
[COL_NPROCS] = { "NPROCS", 5, SCOLS_FL_RIGHT, N_("number of processes in the namespace") },
[COL_PID] = { "PID", 5, SCOLS_FL_RIGHT, N_("lowers PID in the namespace") },
[COL_PPID] = { "PPID", 5, SCOLS_FL_RIGHT, N_("PPID of the PID") },
[COL_COMMAND] = { "COMMAND", 0, SCOLS_FL_TRUNC, N_("command line of the PID")},
- [COL_UID] = { "UID", 0, SCOLS_FL_RIGHT, N_("user ID of the PID")},
+ [COL_UID] = { "UID", 0, SCOLS_FL_RIGHT, N_("UID of the PID")},
[COL_USER] = { "USER", 0, 0, N_("username of the PID")}
};