From c1f8e69d58a5e5a843f42f2750f69505274260cc Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 10 Jun 2007 22:41:42 +0000 Subject: Fix the suid/sgid check so it only looks at regular files since it can generate false positives otherwise. svn path=/main/trunk/; revision=6794 --- pym/portage/dbapi/vartree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 56e4f0097..c7f5dc113 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1483,7 +1483,8 @@ class dblink(object): raise del e continue - if s.st_nlink > 1 and \ + if stat.S_ISREG(s.st_mode) and \ + s.st_nlink > 1 and \ s.st_mode & (stat.S_ISUID | stat.S_ISGID): k = (s.st_dev, s.st_ino) inode_map.setdefault(k, []).append((path, s)) -- cgit v1.2.3-1-g7c22