X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/96eeda03248b57eb0dd96ec1c17080103f24bc96..bd6abc4939621c455f931905f0530115eb8c443c:/receiver.c diff --git a/receiver.c b/receiver.c index 71897a94..da89819a 100644 --- a/receiver.c +++ b/receiver.c @@ -411,7 +411,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) continue; } - strlcpy(template, fnametmp, sizeof(template)); + strlcpy(template, fnametmp, sizeof template); /* we initially set the perms without the * setuid/setgid bits to ensure that there is no race @@ -426,7 +426,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) * transferred, but that may not be the case with -R */ if (fd2 == -1 && relative_paths && errno == ENOENT && create_directory_path(fnametmp, orig_umask) == 0) { - strlcpy(fnametmp, template, sizeof(fnametmp)); + strlcpy(fnametmp, template, sizeof fnametmp); fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS); } if (fd2 == -1) {