From: Martin Pool Date: Mon, 15 Apr 2002 07:50:18 +0000 (+0000) Subject: When -e is specified along with an rsyncd url, the client should get a X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/f49a7b227f988649d023934c925a40b6dd250bef When -e is specified along with an rsyncd url, the client should get a warning but it should not be treated as an error. (Bill Nottingham) http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=62489 --- diff --git a/NEWS b/NEWS index dea1d136..ff54bc46 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,12 @@ rsync changes since last release * Better handling of some client-server errors. (Martin Pool) + * When -e is specified along with an rsyncd url, the client should + get a warning but it should not be treated as an error. (Bill + Nottingham) + + http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=62489 + INTERNAL: * Many code cleanups and improved internal documentation. (Martin diff --git a/clientserver.c b/clientserver.c index 4a857e33..43d9e541 100644 --- a/clientserver.c +++ b/clientserver.c @@ -75,7 +75,7 @@ int start_socket_client(char *host, char *path, int argc, char *argv[]) * See http://lists.samba.org/pipermail/rsync/2000-September/002744.html */ if (shell_cmd) { - rprintf(FERROR, "WARNING: --rsh or -e option ignored when " + rprintf(FINFO, "WARNING: --rsh or -e option ignored when " "connecting to rsync daemon\n"); /* continue */ }