diff options
author | Glenn L McGrath | 2002-12-02 21:18:10 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-12-02 21:18:10 +0000 |
commit | 09adaca37d6bd67745c1c81c598ba25006f990b4 (patch) | |
tree | 7393efda99ebc952755c2a92360c4f6c873d000a /libbb/procps.c | |
parent | 06b1aeaf0ad1748a6e355df3e0e8052d613aa158 (diff) | |
download | busybox-09adaca37d6bd67745c1c81c598ba25006f990b4.zip busybox-09adaca37d6bd67745c1c81c598ba25006f990b4.tar.gz |
last_patch_69, 8 bit clean and other fixes from Vladimir N. Oleynik
Diffstat (limited to 'libbb/procps.c')
-rw-r--r-- | libbb/procps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/procps.c b/libbb/procps.c index e76e1ac..2d2a966 100644 --- a/libbb/procps.c +++ b/libbb/procps.c @@ -115,7 +115,7 @@ extern procps_status_t * procps_scan(int save_user_arg0) buf[--n] = 0; name = buf; while(n) { - if(*name < ' ') + if(((unsigned char)*name) < ' ') *name = ' '; name++; n--; |