fuser: fix inverted access() check. Closes 3799.
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 29 May 2011 00:03:38 +0000 (02:03 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 29 May 2011 00:03:38 +0000 (02:03 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
procps/fuser.c

index 2a7c310..8d63a73 100644 (file)
@@ -299,7 +299,7 @@ int fuser_main(int argc UNUSED_PARAM, char **argv)
 
                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);