diff options
| author | Wayne Davison <wayned@samba.org> | 2006-02-07 19:12:37 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-02-07 19:12:37 +0000 |
| commit | bc880cb8d294984f7cc2af4bceb908b985defd09 (patch) | |
| tree | 7bfff815994e3e14ae1d5eae3781aae3f9a15b93 /options.c | |
| parent | 2243a9353e34b30a7d26220f4f83a5705855873d (diff) | |
| download | android_external_rsync-bc880cb8d294984f7cc2af4bceb908b985defd09.tar.gz android_external_rsync-bc880cb8d294984f7cc2af4bceb908b985defd09.tar.bz2 android_external_rsync-bc880cb8d294984f7cc2af4bceb908b985defd09.zip | |
Don't look for $RSYNC_PARTIAL_DIR on the server side.
Diffstat (limited to 'options.c')
| -rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
