Aid forward-compatibility in the include/exclude syntax by putting
[rsync/rsync.git] / exclude.c
index 5c8c7f4..86ed20a 100644 (file)
--- a/exclude.c
+++ b/exclude.c
@@ -405,7 +405,7 @@ void send_exclude_list(int f)
                if (ent->match_flags & MATCHFLG_INCLUDE) {
                        write_int(f, l + 2);
                        write_buf(f, "+ ", 2);
-               } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
+               } else if (*p == '-' || *p == '+') {
                        write_int(f, l + 2);
                        write_buf(f, "- ", 2);
                } else