diff options
author | Christof Schmitt <cs@samba.org> | 2013-10-11 15:22:13 -0700 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2013-10-12 11:05:52 +0200 |
commit | 1c866461f0eef17efd2c905bb029f51507bd32ff (patch) | |
tree | d02f66643d6cd1091ecc0a3c3148a7cdd5a5f00b /source3 | |
parent | 7a6d240b7fa5ac365af3b615f154017ac83d0942 (diff) | |
download | samba-1c866461f0eef17efd2c905bb029f51507bd32ff.tar.gz samba-1c866461f0eef17efd2c905bb029f51507bd32ff.tar.xz 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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h index 364a4ca6e1a..15e8492747f 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) \ |