diff options
| author | Wayne Davison <wayned@samba.org> | 2005-01-25 10:39:14 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2005-01-25 10:39:14 +0000 |
| commit | 7842418b7b87c4c78ad8ad06fec44150c8aa0956 (patch) | |
| tree | 8ab63c9123b033462e84c4e27d587324f5735561 /main.c | |
| parent | 9624b8642670a3bd79b90e1c2c0ebbc5bf1b635b (diff) | |
| download | android_external_rsync-7842418b7b87c4c78ad8ad06fec44150c8aa0956.tar.gz android_external_rsync-7842418b7b87c4c78ad8ad06fec44150c8aa0956.tar.bz2 android_external_rsync-7842418b7b87c4c78ad8ad06fec44150c8aa0956.zip | |
Renamed several exclude-related functions/variables using new
filter terminology.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -596,7 +596,7 @@ static void do_server_recv(int f_in, int f_out, int argc,char *argv[]) io_start_buffering_in(); if (delete_mode && !delete_excluded) - recv_exclude_list(f_in); + recv_filter_list(f_in); if (filesfrom_fd >= 0) { /* We need to send the files-from names to the sender at the @@ -650,7 +650,7 @@ void start_server(int f_in, int f_out, int argc, char *argv[]) if (am_sender) { keep_dirlinks = 0; /* Must be disabled on the sender. */ - recv_exclude_list(f_in); + recv_filter_list(f_in); if (cvs_exclude) add_cvs_excludes(); do_server_sender(f_in, f_out, argc, argv); @@ -701,7 +701,7 @@ int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[]) if (cvs_exclude) add_cvs_excludes(); if (delete_mode && !delete_excluded) - send_exclude_list(f_out); + send_filter_list(f_out); if (remote_filesfrom_file) filesfrom_fd = f_in; @@ -735,7 +735,7 @@ int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[]) list_only |= 1; if (!read_batch) - send_exclude_list(f_out); + send_filter_list(f_out); if (cvs_exclude) add_cvs_excludes(); |
