summaryrefslogtreecommitdiff
path: root/source3/include/vfs_macros.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-08-22 14:59:05 -0700
committerJeremy Allison <jra@samba.org>2019-08-23 20:06:22 +0000
commit9b4685242fc7aeeae05d50566b428fc003848365 (patch)
treedcde407c96f1f78894e1bf0f1410281ede95699e /source3/include/vfs_macros.h
parent5333ac35dde2b904ac520ac80eee54042c33b39f (diff)
downloadsamba-9b4685242fc7aeeae05d50566b428fc003848365.tar.gz
s3: VFS: Complete the replacement of SMB_VFS_READLINK() -> SMB_VFS_READLINKAT().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Aug 23 20:06:22 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/include/vfs_macros.h')
-rw-r--r--source3/include/vfs_macros.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h
index 61a45240c1e..247e9c286c7 100644
--- a/source3/include/vfs_macros.h
+++ b/source3/include/vfs_macros.h
@@ -301,11 +301,6 @@
#define SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath) \
smb_vfs_call_symlink((handle)->next, (oldpath), (newpath))
-#define SMB_VFS_READLINK(conn, smb_fname, buf, bufsiz) \
- smb_vfs_call_readlink((conn)->vfs_handles, (smb_fname), (buf), (bufsiz))
-#define SMB_VFS_NEXT_READLINK(handle, smb_fname, buf, bufsiz) \
- smb_vfs_call_readlink((handle)->next, (smb_fname), (buf), (bufsiz))
-
#define SMB_VFS_READLINKAT(conn, dirfsp, smb_fname, buf, bufsiz) \
smb_vfs_call_readlinkat((conn)->vfs_handles, (dirfsp), (smb_fname), (buf), (bufsiz))
#define SMB_VFS_NEXT_READLINKAT(handle, dirfsp, smb_fname, buf, bufsiz) \