summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2013-10-11 15:22:13 -0700
committerVolker Lendecke <vl@samba.org>2013-10-12 11:05:52 +0200
commit1c866461f0eef17efd2c905bb029f51507bd32ff (patch)
treed02f66643d6cd1091ecc0a3c3148a7cdd5a5f00b /source3
parent7a6d240b7fa5ac365af3b615f154017ac83d0942 (diff)
downloadsamba-1c866461f0eef17efd2c905bb029f51507bd32ff.tar.gz
samba-1c866461f0eef17efd2c905bb029f51507bd32ff.tar.bz2
samba-1c866461f0eef17efd2c905bb029f51507bd32ff.zip
vfs: Fix parentheses in SMB_VFS_NEXT_DURABLE_COOKIE
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/include/vfs_macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h
index 364a4ca6e1..15e8492747 100644
--- a/source3/include/vfs_macros.h
+++ b/source3/include/vfs_macros.h
@@ -535,7 +535,7 @@
smb_vfs_call_durable_cookie((fsp)->conn->vfs_handles, \
(fsp), (mem_ctx), (cookie))
#define SMB_VFS_NEXT_DURABLE_COOKIE(handle, fsp, mem_ctx, cookie) \
- smb_vfs_call_durable_cookie(((handle)->next, \
+ smb_vfs_call_durable_cookie((handle)->next, \
(fsp), (mem_ctx), (cookie))
#define SMB_VFS_DURABLE_DISCONNECT(fsp, old_cookie, mem_ctx, new_cookie) \