From: Denis Vlasenko Date: Mon, 7 Jan 2008 16:41:41 +0000 (-0000) Subject: ps: fix COMMAND column adjustment X-Git-Tag: 1_10_0~282 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=766f65919b4b6dbbfca2c79480bff8e9fb796092;p=oweals%2Fbusybox.git ps: fix COMMAND column adjustment --- diff --git a/procps/ps.c b/procps/ps.c index a46e92a8b..2bd339c14 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -522,7 +522,7 @@ int ps_main(int argc, char **argv) ))) { #if ENABLE_SELINUX if (use_selinux) { - len = printf("%5u %-32.32s %s ", + len = printf("%5u %-32.32s %s ", p->pid, p->context ? p->context : "unknown", p->state); @@ -538,7 +538,7 @@ int ps_main(int argc, char **argv) char buf6[6]; smart_ulltoa5(p->vsz, buf6, " mgtpezy"); buf6[5] = '\0'; - len = printf("%5u %-8.8s %s %s ", + len = printf("%5u %-8.8s %s %s ", p->pid, user, buf6, p->state); } }