]> granicus.if.org Git - psmisc/commitdiff
added patch #455932 from SF
authorCraig Small <csmall@users.sourceforge.net>
Wed, 17 Oct 2001 22:48:43 +0000 (22:48 +0000)
committerCraig Small <csmall@users.sourceforge.net>
Wed, 17 Oct 2001 22:48:43 +0000 (22:48 +0000)
ChangeLog
src/pstree.c

index 6f97cc4c5675ed62b99b7f71a15254e328e5e2e0..d1fd29252a7e7a0cce752217074a354155c6dc3a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@ Changes in 20.2 (18-OCT-2001)
  - fuser no longer assume st_dev is 0 for sockets, needed for kernel 2.4.12
    and above, Thanks to Alexander Viro for the patch.
  - Search both IPv4 and IPv6 namespaces.
+ - Added patch for pstree -u (SF Patch: #455932 )
 
 Changes in 20.1 (31-MAR-2001)
 =============================
index b5a427c30f83f122e72a6bbcae7d459b6812583e..a349f94626fd0baf33abd7ac3a86b0099434f12e 100644 (file)
@@ -508,8 +508,9 @@ read_proc (void)
        if ((file = fopen (path, "r")) != NULL)
          {
            empty = 0;
-           if (fstat (fileno (file), &st) < 0)
-             {
+            sprintf (path, "%s/%d", PROC_BASE, pid);
+            if (stat (path, &st) < 0)
+           {
                perror (path);
                exit (1);
              }