summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 986516e25..448df94df 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1211,11 +1211,12 @@ class dblink(object):
writemsg_stdout("--- !md5 %s %s\n" % ("obj", obj))
continue
try:
- if statobj.st_nlink > 1:
- portage.writemsg("There are "+str(st.st_nlink-1)+ \
- " hardlinks to '%s'\n" % obj)
- # Always blind chmod 0 before unlinking to avoid race conditions.
- os.chmod(obj, 0000)
+ if statobj.st_mode & S_ISUID or statobj.st_mode & S_ISGID:
+ # Always blind chmod 0 before unlinking to avoid race conditions.
+ os.chmod(obj, 0000)
+ if statobj.st_nlink > 1:
+ portage.writemsg("setXid: "+str(st.st_nlink-1)+ \
+ " hardlinks to '%s'\n" % obj)
os.unlink(obj)
except (OSError, IOError), e:
pass