Doc.
[rsync/rsync.git] / syscall.c
index 56d88b4..3780bac 100644 (file)
--- a/syscall.c
+++ b/syscall.c
@@ -117,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);
 }