aboutsummaryrefslogtreecommitdiffstats
path: root/sender.c
diff options
context:
space:
mode:
authorJ.W. Schultz <jw@samba.org>2003-03-31 17:28:34 +0000
committerJ.W. Schultz <jw@samba.org>2003-03-31 17:28:34 +0000
commitbc63ae3f13e01874e375bb5cc606775889ed5afa (patch)
tree73ba6c968ff9c2563b8a06cbd5801136a2b6870e /sender.c
parent6e12886393ffd34f78e7bdffe6896b4b0da6ceaf (diff)
downloadandroid_external_rsync-bc63ae3f13e01874e375bb5cc606775889ed5afa.tar.gz
android_external_rsync-bc63ae3f13e01874e375bb5cc606775889ed5afa.tar.bz2
android_external_rsync-bc63ae3f13e01874e375bb5cc606775889ed5afa.zip
Removing vestigial support for protocol versions prior to 15.
Diffstat (limited to 'sender.c')
-rw-r--r--sender.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sender.c b/sender.c
index a42042b8..93cf8716 100644
--- a/sender.c
+++ b/sender.c
@@ -20,7 +20,6 @@
#include "rsync.h"
extern int verbose;
-extern int remote_version;
extern int csum_length;
extern struct stats stats;
extern int io_error;
@@ -118,7 +117,7 @@ void send_files(struct file_list *flist,int f_out,int f_in)
i = read_int(f_in);
if (i == -1) {
- if (phase==0 && remote_version >= 13) {
+ if (phase==0) {
phase++;
csum_length = SUM_LENGTH;
write_int(f_out,-1);