diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-13 09:11:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-13 11:03:15 +0200 |
commit | 96ada4d87b6d8618919c614765f2ec1d706f4f4a (patch) | |
tree | 67793663e697dd50aa09bcba7b3ba3d7d674b194 /source4/ntvfs/print | |
parent | 855d23b742c701f2902a96a39caaad49d4d710a1 (diff) | |
download | samba-96ada4d87b6d8618919c614765f2ec1d706f4f4a.tar.gz samba-96ada4d87b6d8618919c614765f2ec1d706f4f4a.tar.bz2 samba-96ada4d87b6d8618919c614765f2ec1d706f4f4a.zip |
s4:ntvfs: add '_fn' suffix to all ntvfs_ops function pointers
This hopefully fixes the build on systems where _LARGE_FILES
triggers defines of syscalls e.g. '#define lseek lseek64'
on AIX.
metze
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Wed Jun 13 11:03:15 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/ntvfs/print')
-rw-r--r-- | source4/ntvfs/print/vfs_print.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/ntvfs/print/vfs_print.c b/source4/ntvfs/print/vfs_print.c index 6019e44132..829fa7877e 100644 --- a/source4/ntvfs/print/vfs_print.c +++ b/source4/ntvfs/print/vfs_print.c @@ -115,10 +115,10 @@ NTSTATUS ntvfs_print_init(void) ops.type = NTVFS_PRINT; /* fill in all the operations */ - ops.connect = print_connect; - ops.disconnect = print_disconnect; - ops.unlink = print_unlink; - ops.ioctl = print_ioctl; + ops.connect_fn = print_connect; + ops.disconnect_fn = print_disconnect; + ops.unlink_fn = print_unlink; + ops.ioctl_fn = print_ioctl; /* register ourselves with the NTVFS subsystem. We register under the name 'default' as we wish to be the default backend */ |