summaryrefslogtreecommitdiff
path: root/source3/smbd/mangle.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-07-22 13:39:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:52:15 -0500
commit0c6d7f28d6c1066cc6b3055ebf6a8fcf685ca1f6 (patch)
treeaab81a105d51d7985421a12bb0496f35a4dc3a26 /source3/smbd/mangle.c
parentd810ffe58e9c6b3b71336f59b899012af9137fe7 (diff)
downloadsamba-0c6d7f28d6c1066cc6b3055ebf6a8fcf685ca1f6.tar.gz
samba-0c6d7f28d6c1066cc6b3055ebf6a8fcf685ca1f6.tar.bz2
samba-0c6d7f28d6c1066cc6b3055ebf6a8fcf685ca1f6.zip
r1570: merging changes from 3.0.5
(This used to be commit 430cf63b9148441bce42bfb15a8045de5da108f4)
Diffstat (limited to 'source3/smbd/mangle.c')
-rw-r--r--source3/smbd/mangle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/mangle.c b/source3/smbd/mangle.c
index b77fe601b6..43becff69d 100644
--- a/source3/smbd/mangle.c
+++ b/source3/smbd/mangle.c
@@ -98,9 +98,9 @@ BOOL mangle_is_8_3_wildcards(const char *fname, BOOL check_case)
looking for a matching name if it doesn't. It should succeed most of the time
or there will be a huge performance penalty
*/
-BOOL mangle_check_cache(char *s)
+BOOL mangle_check_cache(char *s, size_t maxlen)
{
- return mangle_fns->check_cache(s);
+ return mangle_fns->check_cache(s, maxlen);
}
/*