diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-21 19:04:34 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-21 20:49:16 +0100 |
commit | e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc (patch) | |
tree | a6e586add1d5f07016999d0138042db1cbd751b2 /source3/client | |
parent | b2db4c51625077569ccc0fdf39471a67c3646066 (diff) | |
download | samba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.tar.gz samba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.tar.bz2 samba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.zip |
s3: Make the implicit reference to Protocol in mask_match() explicit
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |