X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d1f83bcc81a98c4b8fa2d18f3aae8d291a8a0c00..e106de49c83ec70eb8c8bf4c92fd493757847e04:/compat.c diff --git a/compat.c b/compat.c index 2f497007..02f5028f 100644 --- a/compat.c +++ b/compat.c @@ -61,7 +61,10 @@ void setup_protocol(int f_out,int f_in) rprintf(FERROR,"(see the rsync man page for an explanation)\n"); exit_cleanup(RERR_PROTOCOL); } - + if (remote_version < OLD_PROTOCOL_VERSION) + rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n", + am_server ? "Server" : "Client"); + if (remote_version >= 12) { if (am_server) { if (read_batch || write_batch) /* dw */