Aid forward-compatibility in the include/exclude syntax by putting

a "- " in front of any name that starts with a '+' or a '-' and would
otherwise be unprefixed (the old code only did this if the '+' or '-'
was followed by a space).
This commit is contained in:
Wayne Davison
2005-01-13 22:01:56 +00:00
parent 106a8ad918
commit 14d496cc8b

View File

@@ -405,7 +405,7 @@ void send_exclude_list(int f)
if (ent->match_flags & MATCHFLG_INCLUDE) { if (ent->match_flags & MATCHFLG_INCLUDE) {
write_int(f, l + 2); write_int(f, l + 2);
write_buf(f, "+ ", 2); write_buf(f, "+ ", 2);
} else if ((*p == '-' || *p == '+') && p[1] == ' ') { } else if (*p == '-' || *p == '+') {
write_int(f, l + 2); write_int(f, l + 2);
write_buf(f, "- ", 2); write_buf(f, "- ", 2);
} else } else