From 02e6ba91e887bd11146a57185b223582f56f3f09 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 30 Sep 2002 20:39:56 +0000 Subject: Vodz' last_patch57: Hi, Erik. my_getpw(uid/gid) and applets used it have problem: if username for uid not found, applets can`t detect it (but code pessent). Also "%8ld " format is bad: spaces not required (applets have self format or spec format (tar applet) and overflow for "id" applet...) This problem also pressent in stable version. Patch for unstable in attach. --w vodz --- procps/ps.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'procps/ps.c') diff --git a/procps/ps.c b/procps/ps.c index aa40860..6036ffc 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -150,8 +150,6 @@ extern int ps_main(int argc, char **argv) /* Make some adjustments as needed */ my_getpwuid(uidName, p.ruid); - if (*uidName == '\0') - sprintf(uidName, "%d", p.ruid); sprintf(path, "/proc/%s/cmdline", entry->d_name); file = fopen(path, "r"); @@ -243,8 +241,6 @@ extern int ps_main(int argc, char **argv) /* Make some adjustments as needed */ my_getpwuid(uidName, info.euid); - if (*uidName == '\0') - sprintf(uidName, "%ld", info.euid); if(p.vmsize == 0) len = printf("%5d %-8s %c ", p.pid, uidName, p.state); -- cgit v1.1