Commit 0a31a4c9 authored by bescoto's avatar bescoto

Add os.makedirs to prevent bug with --create-full-path


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@645 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 5f956fdf
New in v1.0.2 (????/??/??)
--------------------------
Fix for spurious security violation from --create-full-path (reported
by Mike Bydalek).
Fix for bug 14545 which was introduced in version 1.0.1: Quoting
caused a spurious security violation. (Important for Mac OS X)
......
......@@ -45,7 +45,7 @@ file_requests = {'os.listdir':0, 'C.make_file_dict':0, 'os.chmod':0,
'os.chown':0, 'os.remove':0, 'os.removedirs':0,
'os.rename':0, 'os.renames':0, 'os.rmdir':0, 'os.unlink':0,
'os.utime':0, 'os.lchown':0, 'os.link':1, 'os.symlink':1,
'os.mkdir':0}
'os.mkdir':0, 'os.makedirs':0}
def initialize(action, cmdpairs):
......
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