From e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 21 Nov 2009 19:04:34 +0100 Subject: s3: Make the implicit reference to Protocol in mask_match() explicit --- source3/client/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 6773e6d90a..7cbaa81d52 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -472,7 +472,8 @@ static bool do_this_one(file_info *finfo) } if (*client_get_fileselection() && - !mask_match(finfo->name,client_get_fileselection(),false)) { + !mask_match(finfo->name, client_get_fileselection(), + get_Protocol(), false)) { DEBUG(3,("mask_match %s failed\n", finfo->name)); return false; } -- cgit