commit | 217a7f4bf95339a93a217c5806c5b9a48c0027d5 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Sun May 29 02:03:38 2011 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Sun May 29 02:03:38 2011 +0200 |
tree | b970adfadffa7c2886934f5d5926ace4569a95ba | |
parent | 8dc6195c97e6bfc70a0158bce40c87d74d1a83d6 [diff] [blame] |
fuser: fix inverted access() check. Closes 3799. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/procps/fuser.c b/procps/fuser.c index 2a7c310..8d63a73 100644 --- a/procps/fuser.c +++ b/procps/fuser.c
@@ -299,7 +299,7 @@ strcpy(path, "/proc/net/"); if (sscanf(*pp, "%u/%4s", &port, path + sizeof("/proc/net/")-1) == 2 - && access(path, R_OK) != 0 + && access(path, R_OK) == 0 ) { /* PORT/PROTO */ scan_proc_net_or_maps(path, port);