Commit 10df4ad4 authored by bescoto's avatar bescoto

Removed ownership changing warning that is usually unneeded


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@618 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 0ca738aa
......@@ -190,10 +190,7 @@ rdiff-backup-data/chars_to_quote.
try:
tmp_rp.chown(uid+1, gid+1) # just choose random uid/gid
tmp_rp.chown(0, 0)
except (IOError, OSError), exc:
log.Log("Warning: ownership cannot be changed on filesystem "
"at %s" % (self.root_rp.path,), 3)
self.ownership = 0
except (IOError, OSError), exc: self.ownership = 0
else: self.ownership = 1
tmp_rp.delete()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment