Cope with BSD systems on which mkdir() will not accept a trailing
authorMartin Pool <mbp@samba.org>
Mon, 18 Feb 2002 22:44:23 +0000 (22:44 +0000)
committerMartin Pool <mbp@samba.org>
Mon, 18 Feb 2002 22:44:23 +0000 (22:44 +0000)
slash.

<http://www.opensource.apple.com/bugs/X/BSD%20Kernel/2734739.html>

NEWS
syscall.c

diff --git a/NEWS b/NEWS
index 3457da1..8e76d34 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,9 @@ rsync 2.5.3 (not released yet)
     * Fix for rsync server processes hanging around after the client
       unexpectedly disconnects.  (Colin Walters) (Debian bug #128632)
 
+    * Cope with BSD systems on which mkdir() will not accept a trailing
+      slash.
+
   ENHANCEMENTS:
 
     * Command to initiate connections is only shown with -vv, rather
index dbac7dc..f7ce3f0 100644 (file)
--- a/syscall.c
+++ b/syscall.c
@@ -1,5 +1,6 @@
 /* 
    Copyright (C) Andrew Tridgell 1998
+   Copyright (C) 2002 by Martin Pool
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
-/*
-  syscall wrappers to ensure that nothing gets done in dry_run mode
-  */
+/**
+ * @file syscall.c
+ *
+ * Syscall wrappers to ensure that nothing gets done in dry_run mode
+ * and to handle system peculiarities.
+ **/
 
 #include "rsync.h"
 
@@ -106,13 +110,24 @@ int do_rename(char *fname1, char *fname2)
        return rename(fname1, fname2);
 }
 
+
 int do_mkdir(char *fname, mode_t mode)
 {
-       if (dry_run) return 0;
-       CHECK_RO
+       int l;
+       if (dry_run)
+               return 0;
+       CHECK_RO;
+       
+       /* Some BSD systems cannot make a directory if the name
+        * contains a trailing slash.
+        * <http://www.opensource.apple.com/bugs/X/BSD%20Kernel/2734739.html> */
+       if ((l = strlen(fname))  &&  (fname[l-1] == '/'))
+               fname[l-1] = '/';
+       
        return mkdir(fname, mode);
 }
 
+
 /* like mkstemp but forces permissions */
 int do_mkstemp(char *template, mode_t perms)
 {