From: Wayne Davison Date: Fri, 23 Jul 2004 16:59:38 +0000 (+0000) Subject: Tweaked a compound line. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/d9b4d267c703c9b5152ecaec9900c6a56ee908d0 Tweaked a compound line. --- diff --git a/generator.c b/generator.c index 728bcb77..33fcf2ab 100644 --- a/generator.c +++ b/generator.c @@ -291,9 +291,8 @@ static void recv_generator(char *fname, struct file_struct *file, int i, return; } - if (statret == 0 && - !preserve_perms && - (S_ISDIR(st.st_mode) == S_ISDIR(file->mode))) { + if (statret == 0 && !preserve_perms + && S_ISDIR(st.st_mode) == S_ISDIR(file->mode)) { /* if the file exists already and we aren't perserving * permissions then act as though the remote end sent * us the file permissions we already have */