]> granicus.if.org Git - psmisc/commitdiff
fixed dumb logic typo
authorCraig Small <csmall@users.sourceforge.net>
Mon, 19 Mar 2001 02:56:06 +0000 (02:56 +0000)
committerCraig Small <csmall@users.sourceforge.net>
Mon, 19 Mar 2001 02:56:06 +0000 (02:56 +0000)
src/fuser.c

index fa95a3c01207f52a97a06afbb963205dcd0af03e..a052777b1ce7d10e18f5202267db514e00e914a2 100644 (file)
@@ -391,7 +391,7 @@ scan_fd (void)
     }
   empty = 1;
   while ((de = readdir (dir)) != NULL)
-    if ((pid = atoi (de->d_name)) == 0)
+    if ((pid = atoi (de->d_name)) != 0)
       {
        empty = 0;
        sprintf (path, "%s/%d", PROC_BASE, pid);