From: Wayne Davison Date: Mon, 20 Feb 2006 17:58:13 +0000 (+0000) Subject: A brief msleep() in option_error() may be helpful to ensure that X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/8f1dc165e2dc997e12c09f7ea8e2588f16eed8b8 A brief msleep() in option_error() may be helpful to ensure that an option error always arrives intact from the remote rsync. --- diff --git a/options.c b/options.c index d7c7cbec..df6e0bd1 100644 --- a/options.c +++ b/options.c @@ -592,6 +592,7 @@ void option_error(void) } rprintf(FERROR, RSYNC_NAME ": %s", err_buf); + msleep(20); }