X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9935066b704bcf2e6e48dac85cb1b4047d8f439d..fd4893155d5226d32f350d15cc3e29beec677f39:/receiver.c diff --git a/receiver.c b/receiver.c index ca6bf23f..75bf0cea 100644 --- a/receiver.c +++ b/receiver.c @@ -305,8 +305,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) rprintf(FINFO,"recv_files(%d) starting\n",flist->count); } - if (flist->hlink_pool) - { + if (flist->hlink_pool) { pool_destroy(flist->hlink_pool); flist->hlink_pool = NULL; } @@ -362,7 +361,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) /* open the file */ fd1 = do_open(fnamecmp, O_RDONLY, 0); - if ((fd1 == -1) && (compare_dest != NULL)) { + if (fd1 == -1 && compare_dest != NULL) { /* try the file at compare_dest instead */ pathjoin(fnamecmpbuf, sizeof fnamecmpbuf, compare_dest, fname);