X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6e12886393ffd34f78e7bdffe6896b4b0da6ceaf..bc63ae3f13e01874e375bb5cc606775889ed5afa:/flist.c diff --git a/flist.c b/flist.c index 2e11766c..2fff9cf1 100644 --- a/flist.c +++ b/flist.c @@ -1042,7 +1042,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) /* now send the uid/gid list. This was introduced in protocol version 15 */ - if (f != -1 && remote_version >= 15) { + if (f != -1) { send_uid_list(f); } @@ -1122,7 +1122,7 @@ struct file_list *recv_file_list(int f) } /* now recv the uid/gid list. This was introduced in protocol version 15 */ - if (f != -1 && remote_version >= 15) { + if (f != -1) { recv_uid_list(f, flist); }