]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Suggested patch from Jim Ogilvie <jogilvie@us.ibm.com> to print out the
authorDavid Dykstra <dwd@samba.org>
Wed, 13 Feb 2002 18:42:20 +0000 (18:42 +0000)
committerDavid Dykstra <dwd@samba.org>
Wed, 13 Feb 2002 18:42:20 +0000 (18:42 +0000)
system error message when mkstemp fails.

receiver.c

index 6b6b63a51016414c348a3993dc6410e0c215f13f..dbd8bfdb5b78bcd825d34c2558282cfae5eef1c2 100644 (file)
@@ -424,7 +424,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen)
                   access because of a similar race condition. */
                fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
                if (fd2 == -1) {
-                       rprintf(FERROR,"mkstemp %s failed\n",fnametmp);
+                       rprintf(FERROR,"mkstemp %s failed: %s\n",fnametmp,strerror(errno));
                        receive_data(f_in,buf,-1,NULL,file->length);
                        if (buf) unmap_file(buf);
                        continue;