Added a description arg to check_exclude().
[rsync/rsync.git] / util.c
diff --git a/util.c b/util.c
index d197a5f..fd63009 100644 (file)
--- a/util.c
+++ b/util.c
@@ -476,7 +476,8 @@ static int exclude_server_path(char *arg)
        if (server_exclude_list) {
                for (s = arg; (s = strchr(s, '/')) != NULL; ) {
                        *s = '\0';
-                       if (check_exclude(server_exclude_list, arg, 1)) {
+                       if (check_exclude(server_exclude_list, arg, 1,
+                           "server pattern")) {
                                /* We must leave arg truncated! */
                                return 1;
                        }