From 1c866461f0eef17efd2c905bb029f51507bd32ff Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Fri, 11 Oct 2013 15:22:13 -0700 Subject: [PATCH] vfs: Fix parentheses in SMB_VFS_NEXT_DURABLE_COOKIE Signed-off-by: Christof Schmitt Reviewed-by: Volker Lendecke --- source3/include/vfs_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) \ -- 2.34.1