From: Wayne Davison Date: Tue, 24 Oct 2006 00:36:42 +0000 (+0000) Subject: Obey the new --no-motd option. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/9ce7fc3887570316c2bd33245b8422ca1d2ee96c Obey the new --no-motd option. --- diff --git a/clientserver.c b/clientserver.c index 5e8ae526..1cb6a09e 100644 --- a/clientserver.c +++ b/clientserver.c @@ -24,6 +24,7 @@ extern int verbose; extern int quiet; +extern int output_motd; extern int list_only; extern int am_sender; extern int am_server; @@ -205,7 +206,10 @@ int start_inband_exchange(char *user, char *path, int f_in, int f_out, return -1; } - rprintf(FINFO, "%s\n", line); + /* This might be a MOTD line or a module listing, but there is + * no way to differentiate it. The manpage mentions this. */ + if (output_motd) + rprintf(FINFO, "%s\n", line); } kluge_around_eof = 0;