From: Wayne Davison Date: Tue, 7 Feb 2006 19:12:37 +0000 (+0000) Subject: Don't look for $RSYNC_PARTIAL_DIR on the server side. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/bc880cb8d294984f7cc2af4bceb908b985defd09 Don't look for $RSYNC_PARTIAL_DIR on the server side. --- diff --git a/options.c b/options.c index 30af80df..fd871b53 100644 --- a/options.c +++ b/options.c @@ -1362,7 +1362,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) return 0; #endif } else { - if (keep_partial && !partial_dir) { + if (keep_partial && !partial_dir && !am_server) { if ((arg = getenv("RSYNC_PARTIAL_DIR")) != NULL && *arg) partial_dir = strdup(arg); }