diff options
author | Wayne Davison <wayned@samba.org> | 2005-02-04 21:12:56 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2005-02-04 21:12:56 +0000 |
commit | dd667c230115522223539e71d0983ade2c6d7cfe (patch) | |
tree | 98fec255d2b97a4b12a2e09cd347aa0149099ea8 /batch.c | |
parent | d727f0ff4828998b91827455804f674f16457d71 (diff) | |
download | rsync-dd667c230115522223539e71d0983ade2c6d7cfe.tar.gz rsync-dd667c230115522223539e71d0983ade2c6d7cfe.tar.bz2 rsync-dd667c230115522223539e71d0983ade2c6d7cfe.zip |
Call get_rule_prefix() with its new arg.
Diffstat (limited to 'batch.c')
-rw-r--r-- | batch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ static void write_filter_rules(int fd) write_sbuf(fd, " <<'#E#'\n"); for (ent = filter_list.head; ent; ent = ent->next) { unsigned int plen; - char *p = get_rule_prefix(ent->match_flags, "- ", &plen); + char *p = get_rule_prefix(ent->match_flags, "- ", 0, &plen); write_buf(fd, p, plen); write_sbuf(fd, ent->pattern); if (ent->match_flags & MATCHFLG_DIRECTORY) |