diff options
author | Wayne Davison <wayned@samba.org> | 2006-05-18 18:53:24 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-05-18 18:53:24 +0000 |
commit | 95ae5224b0c5831e43ab02730b20c320577d8e6a (patch) | |
tree | 90f6b302e691b5f5fd5c5106277429462f7bb1bc /receiver.c | |
parent | 03dbc0b831c0df53c45828b73ffcb816f84c28bf (diff) | |
download | rsync-95ae5224b0c5831e43ab02730b20c320577d8e6a.tar.gz |
The cleanup_set() call was not getting called w/o --partial.
Diffstat (limited to 'receiver.c')
-rw-r--r-- | receiver.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -591,8 +591,7 @@ int recv_files(int f_in, struct file_list *flist, char *local_name) continue; } - if (keep_partial) - cleanup_set(fnametmp, partialptr, file, fd1, fd2); + cleanup_set(fnametmp, partialptr, file, fd1, fd2); } /* log the transfer */ |