summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-04-20 22:55:25 +0200
committerJeremy Allison <jra@samba.org>2011-04-21 02:01:20 +0200
commitc7073f8b545976719bfdba7b7bbd460d595041d5 (patch)
tree6386c21fa822098c285bbf4358b7df5ba7e96f47 /source3/include
parent0b89ce671250daddc86400ef4e1996c37c126025 (diff)
downloadsamba-c7073f8b545976719bfdba7b7bbd460d595041d5.tar.gz
samba-c7073f8b545976719bfdba7b7bbd460d595041d5.tar.bz2
samba-c7073f8b545976719bfdba7b7bbd460d595041d5.zip
s3-vfs: rename open function to open_fn.
This should finally fix the AIX build and allow to remove AIX specific ifdefs. Guenther Signed-off-by: Jeremy Allison <jra@samba.org> Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Apr 21 02:01:20 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/vfs.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index ad15bd8042..28d6c38d1d 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -133,6 +133,7 @@
/* Leave at 28 - not yet released. Rename posix_fallocate to fallocate
to split out the two possible uses. JRA. */
/* Leave at 28 - not yet released. Add fdopendir. JRA. */
+/* Leave at 28 - not yet released. Rename open function to open_fn. - gd */
#define SMB_VFS_INTERFACE_VERSION 28
@@ -214,9 +215,9 @@ struct vfs_fn_pointers {
/* File operations */
- int (*open)(struct vfs_handle_struct *handle,
- struct smb_filename *smb_fname, files_struct *fsp,
- int flags, mode_t mode);
+ int (*open_fn)(struct vfs_handle_struct *handle,
+ struct smb_filename *smb_fname, files_struct *fsp,
+ int flags, mode_t mode);
NTSTATUS (*create_file)(struct vfs_handle_struct *handle,
struct smb_request *req,
uint16_t root_dir_fid,