aboutsummaryrefslogtreecommitdiffstats
path: root/exclude.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-05 05:30:06 +0000
committerWayne Davison <wayned@samba.org>2005-02-05 05:30:06 +0000
commita261103ce07e6d6f81aabae2913711b659a3dbfd (patch)
tree0af746653eb6f7965140ffcd7d2b7b7a4f5d48e1 /exclude.c
parent7b82b5adb3b53aef3c0c22b404e3989fc5a6f924 (diff)
downloadandroid_external_rsync-a261103ce07e6d6f81aabae2913711b659a3dbfd.tar.gz
android_external_rsync-a261103ce07e6d6f81aabae2913711b659a3dbfd.tar.bz2
android_external_rsync-a261103ce07e6d6f81aabae2913711b659a3dbfd.zip
Improved the name of a variable.
Diffstat (limited to 'exclude.c')
-rw-r--r--exclude.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/exclude.c b/exclude.c
index 6ea9767c..a60f5f80 100644
--- a/exclude.c
+++ b/exclude.c
@@ -935,15 +935,15 @@ void parse_filter_file(struct filter_list_struct *listp, const char *fname,
fclose(fp);
}
-/* If the "sending" flag is > 0, the prefix is made compatible with the
+/* If the "for_xfer" flag is set, the prefix is made compatible with the
* current protocol_version (if possible) or a NULL is returned (if not
* possible). */
-char *get_rule_prefix(int match_flags, const char *pat, int sending,
+char *get_rule_prefix(int match_flags, const char *pat, int for_xfer,
unsigned int *plen_ptr)
{
static char buf[MAX_RULE_PREFIX+1];
char *op = buf;
- int legal_len = sending && protocol_version < 29 ? 1 : MAX_RULE_PREFIX;
+ int legal_len = for_xfer && protocol_version < 29 ? 1 : MAX_RULE_PREFIX;
if (match_flags & MATCHFLG_PERDIR_MERGE) {
if (legal_len == 1)