diff options
author | Wayne Davison <wayned@samba.org> | 2004-04-22 09:58:21 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2004-04-22 09:58:21 +0000 |
commit | acfcfa70538df76cfa7f95082a9d0231fcf669dd (patch) | |
tree | 6c661a03e03faae01638606244011af048a5b299 /util.c | |
parent | 8ef81dd45257e27275baff9421af8d78b64b6752 (diff) | |
download | rsync-acfcfa70538df76cfa7f95082a9d0231fcf669dd.tar.gz |
No need to pass a debug string to check_exclude() anymore.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -476,8 +476,7 @@ static int exclude_server_path(char *arg) if (server_exclude_list.head) { for (s = arg; (s = strchr(s, '/')) != NULL; ) { *s = '\0'; - if (check_exclude(&server_exclude_list, arg, 1, - "server pattern")) { + if (check_exclude(&server_exclude_list, arg, 1)) { /* We must leave arg truncated! */ return 1; } |