From a44a2c74af9de76499e415a74ffec56661c4aca3 Mon Sep 17 00:00:00 2001 From: albert <> Date: Sun, 7 Sep 2003 23:28:49 +0000 Subject: [PATCH] fixed -p option (James Harlow) --- NEWS | 1 + top.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index bbd9738c..c62d6e4a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,6 @@ procps-3.1.11 --> procps-3.1.12 +top: multiple -p options work again top: fixed 4 GB wrap-around ps: comes with tests man page: /var/run/utmp, not /etc/utmp #206583 diff --git a/top.c b/top.c index 3a48937b..89de977a 100644 --- a/top.c +++ b/top.c @@ -1771,7 +1771,7 @@ static void parse_args (char **args) break; case 'p': do { - if (selection_type) std_err("conflicting process selection"); + if (selection_type && selection_type != 'p') std_err("conflicting process selection"); selection_type = 'p'; if (cp[1]) cp++; else if (*args) cp = *args++; @@ -1798,7 +1798,7 @@ static void parse_args (char **args) case 'u': do { const char *errmsg; - if (selection_type) std_err("conflicting process selection"); + if (selection_type /* && selection_type != 'u' */) std_err("conflicting process selection"); if (cp[1]) cp++; else if (*args) cp = *args++; else std_err("-u missing name"); @@ -1811,7 +1811,7 @@ static void parse_args (char **args) case 'U': do { const char *errmsg; - if (selection_type) std_err("conflicting process selection"); + if (selection_type && /* selection_type != 'U' */) std_err("conflicting process selection"); if (cp[1]) cp++; else if (*args) cp = *args++; else std_err("-u missing name");