ps: fix COMMAND column adjustment

This commit is contained in:
Denis Vlasenko 2008-01-07 16:41:41 +00:00
parent 482f2b31e7
commit 766f65919b

View File

@ -522,7 +522,7 @@ int ps_main(int argc, char **argv)
))) { ))) {
#if ENABLE_SELINUX #if ENABLE_SELINUX
if (use_selinux) { if (use_selinux) {
len = printf("%5u %-32.32s %s ", len = printf("%5u %-32.32s %s ",
p->pid, p->pid,
p->context ? p->context : "unknown", p->context ? p->context : "unknown",
p->state); p->state);
@ -538,7 +538,7 @@ int ps_main(int argc, char **argv)
char buf6[6]; char buf6[6];
smart_ulltoa5(p->vsz, buf6, " mgtpezy"); smart_ulltoa5(p->vsz, buf6, " mgtpezy");
buf6[5] = '\0'; buf6[5] = '\0';
len = printf("%5u %-8.8s %s %s ", len = printf("%5u %-8.8s %s %s ",
p->pid, user, buf6, p->state); p->pid, user, buf6, p->state);
} }
} }