From: Wayne Davison Date: Fri, 3 Feb 2006 23:40:37 +0000 (+0000) Subject: Decided to undo the last change to avoid backward compatibility X-Git-Tag: v2.6.7pre1~63 X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=7eaabd8fac9e31e2fb749984730d830c6de5fe94;p=thirdparty%2Frsync.git Decided to undo the last change to avoid backward compatibility inconsistencies (it would have been the right thing to do if it were done that way from the start, but not now). --- diff --git a/options.c b/options.c index 0f0d8f2c1..50a820b57 100644 --- a/options.c +++ b/options.c @@ -1368,8 +1368,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) clean_fname(partial_dir, 1); if (!*partial_dir || strcmp(partial_dir, ".") == 0) partial_dir = NULL; - else if (*partial_dir != '/' - && check_filter(&filter_list, partial_dir, 1) == 0) { + else if (*partial_dir != '/') { parse_rule(&filter_list, partial_dir, MATCHFLG_NO_PREFIXES|MATCHFLG_DIRECTORY, 0); }