From: Christof Schmitt Date: Fri, 11 Oct 2013 22:22:13 +0000 (-0700) Subject: vfs: Fix parentheses in SMB_VFS_NEXT_DURABLE_COOKIE X-Git-Url: http://git.samba.org/?p=mat%2Fsamba.git;a=commitdiff_plain;h=1c866461f0eef17efd2c905bb029f51507bd32ff vfs: Fix parentheses in SMB_VFS_NEXT_DURABLE_COOKIE Signed-off-by: Christof Schmitt Reviewed-by: Volker Lendecke --- 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) \