s3: Make the implicit reference to Protocol in mask_match_list() explicit
[gd/samba/.git] / source3 / client / clitar.c
index d9733294274e70fec692d2e98c4fa9eb5545a1a4..4cbe69f649245e2cdcc25147be6b0010d7c98592 100644 (file)
@@ -827,7 +827,9 @@ static void do_tar(file_info *finfo, const char *dir)
                DEBUG(5, ("...tar_re_search: %d\n", tar_re_search));
 
                if ((!tar_re_search && clipfind(cliplist, clipn, exclaim)) ||
-                               (tar_re_search && mask_match_list(exclaim, cliplist, clipn, True))) {
+                   (tar_re_search
+                    && mask_match_list(exclaim, cliplist, clipn,
+                                       get_Protocol(), True))) {
                        DEBUG(3,("Skipping file %s\n", exclaim));
                        TALLOC_FREE(exclaim);
                        return;
@@ -1210,7 +1212,10 @@ static void do_tarput(void)
                /* Well, now we have a header, process the file ...            */
                /* Should we skip the file? We have the long name as well here */
                skip = clipn && ((!tar_re_search && clipfind(cliplist, clipn, finfo.name) ^ tar_excl) ||
-                                       (tar_re_search && mask_match_list(finfo.name, cliplist, clipn, True)));
+                                (tar_re_search
+                                 && mask_match_list(finfo.name, cliplist,
+                                                    clipn, get_Protocol(),
+                                                    True)));
 
                DEBUG(5, ("Skip = %i, cliplist=%s, file=%s\n", skip, (cliplist?cliplist[0]:NULL), finfo.name));
                if (skip) {