Doc.
[rsync/rsync.git] / syscall.c
index 5876066..3780bac 100644 (file)
--- a/syscall.c
+++ b/syscall.c
@@ -76,12 +76,17 @@ int do_rmdir(char *pathname)
 
 int do_open(char *pathname, int flags, mode_t mode)
 {
-       if (dry_run) return -1;
+       if (flags != O_RDONLY) {
+           if (dry_run) return -1;
+           CHECK_RO
+       }
 #ifdef O_BINARY
        /* for Windows */
        flags |= O_BINARY;
 #endif
-       CHECK_RO
+       /* some systems can't handle a double / */
+       if (pathname[0] == '/' && pathname[1] == '/') pathname++;
+
        return open(pathname, flags, mode);
 }
 
@@ -112,6 +117,9 @@ char *do_mktemp(char *template)
 {
        if (dry_run) return NULL;
        if (read_only) {errno = EROFS; return NULL;}
+       
+        /* TODO: Replace this with a good builtin mkstemp, perhaps
+        * from OpenBSD.  Some glibc versions are buggy.  */
        return mktemp(template);
 }