]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lsns: fix usage()
authorKarel Zak <kzak@redhat.com>
Tue, 1 Dec 2015 12:50:51 +0000 (13:50 +0100)
committerKarel Zak <kzak@redhat.com>
Tue, 1 Dec 2015 12:50:51 +0000 (13:50 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
sys-utils/lsns.c

index c1d649ae44e053a36c0ecb61a984105dd4012695..79189345ad6c06ba575312e49e2cdaf2a4ee5768 100644 (file)
@@ -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")}
 };