From 8f1dc165e2dc997e12c09f7ea8e2588f16eed8b8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 20 Feb 2006 17:58:13 +0000 Subject: [PATCH] A brief msleep() in option_error() may be helpful to ensure that an option error always arrives intact from the remote rsync. --- options.c | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.34.1