diff options
author | Günther Deschner <gd@samba.org> | 2011-04-20 17:54:24 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-04-20 18:16:28 +0200 |
commit | ae61a5c3d05192457f5a0b24dd9bd34317df566f (patch) | |
tree | eb424f233c3ac4bd2aac9423aee3b049f7d8d374 /source3/smbd/vfs.c | |
parent | c8f9515f193e634da2ef01c525e2a05a3d519862 (diff) | |
download | samba-ae61a5c3d05192457f5a0b24dd9bd34317df566f.tar.gz samba-ae61a5c3d05192457f5a0b24dd9bd34317df566f.tar.xz samba-ae61a5c3d05192457f5a0b24dd9bd34317df566f.zip |
s3-smbd: fix the AIX 5.3 build.
(AIX defines open to be open64)
Guenther
Diffstat (limited to 'source3/smbd/vfs.c')
-rw-r--r-- | source3/smbd/vfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 0438f7934ed..aaa713e4809 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -1273,6 +1273,9 @@ int smb_vfs_call_open(struct vfs_handle_struct *handle, struct smb_filename *smb_fname, struct files_struct *fsp, int flags, mode_t mode) { +#ifdef AIX +#undef open /* AIX defines open to be open64 */ +#endif VFS_FIND(open); return handle->fns->open(handle, smb_fname, fsp, flags, mode); } |