diff options
author | Wayne Davison <wayned@samba.org> | 2007-11-20 17:37:53 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-11-20 17:37:53 -0800 |
commit | 29bca53f9b6c020b5bd226b6378482a203fa7df3 (patch) | |
tree | ac880b0227d574aab35d6b2f2a8f2e3c972f9dac /exclude.c | |
parent | dc2815c1fb40ff8f40eee6e1eaf57deb7fbf1d3d (diff) | |
download | rsync-29bca53f9b6c020b5bd226b6378482a203fa7df3.tar.gz |
Got rid of the unused symlink parameter to sanitize_path().
Diffstat (limited to 'exclude.c')
-rw-r--r-- | exclude.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -295,7 +295,7 @@ static char *parse_merge_name(const char *merge_file, unsigned int *len_ptr, strlcpy(to, merge_file, *len_ptr + 1); merge_file = to; } - if (!sanitize_path(fn, merge_file, r, dirbuf_depth, NULL)) { + if (!sanitize_path(fn, merge_file, r, dirbuf_depth)) { rprintf(FERROR, "merge-file name overflows: %s\n", merge_file); return NULL; |