diff options
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 */ |