]> git.ipfire.org Git - thirdparty/util-linux.git/commit
lsns: Fix "lowers" -> "lowest" typo in --help for COL_PID
authorW. Trevor King <wking@tremily.us>
Tue, 15 Dec 2015 19:46:25 +0000 (11:46 -0800)
committerKarel Zak <kzak@redhat.com>
Tue, 5 Jan 2016 11:03:18 +0000 (12:03 +0100)
commitdd62675a87da03cacfc3cff79d60fa63346b91c0
treea302e19189210f400786a1756d5b850b7ea65d70
parent8b7ef916893de143828d2e2670020d955887bb22
lsns: Fix "lowers" -> "lowest" typo in --help for COL_PID

The process-selection logic is in add_process_to_namespace:

  if (!ns->proc || ns->proc->pid > proc->pid)
    ns->proc = proc;

so it's just selecting the lowest PID.

Signed-off-by: W. Trevor King <wking@tremily.us>
sys-utils/lsns.c