summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-05-06 10:47:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:48 -0500
commitaf2437b269a175672dd093527e20cc7f719b1e16 (patch)
tree1515db643730dee73e34563f9380bec5f2ed4a49 /source3
parentf1619152ba9083fd5e65f8768cc6385df1b714f5 (diff)
downloadsamba-af2437b269a175672dd093527e20cc7f719b1e16.tar.gz
samba-af2437b269a175672dd093527e20cc7f719b1e16.tar.bz2
samba-af2437b269a175672dd093527e20cc7f719b1e16.zip
r6629: Fix stupid typo. Thanks Gunther.
Jeremy. (This used to be commit 8693df2551fce145f7c919dee67a26d8fb8dfd1d)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/reply.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index d39b9a20d3..8cccd9b568 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -1753,7 +1753,7 @@ NTSTATUS unlink_internals(connection_struct *conn, int dirtype, char *name)
*/
if (!rc && mangle_is_mangled(mask,SNUM(conn)))
- mangle_check_cache( mask, sizeof(pstring)-1 );
+ mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
if (!has_wild) {
pstrcat(directory,"/");
@@ -4055,7 +4055,7 @@ NTSTATUS rename_internals(connection_struct *conn, char *name, char *newname, ui
*/
if (!rc && mangle_is_mangled(mask,SNUM(conn)))
- mangle_check_cache( mask, sizeof(pstring)-1 );
+ mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
has_wild = ms_has_wild(mask);
@@ -4536,7 +4536,7 @@ int reply_copy(connection_struct *conn, char *inbuf,char *outbuf, int dum_size,
*/
if (!rc && mangle_is_mangled(mask, SNUM(conn)))
- mangle_check_cache( mask, sizeof(pstring)-1 );
+ mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
has_wild = ms_has_wild(mask);