Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/ntvfs/print/vfs_print.c

    r740 r988  
    2323
    2424#include "includes.h"
    25 #include "libcli/raw/ioctl.h"
     25#include "../libcli/smb/smb_constants.h"
    2626#include "ntvfs/ntvfs.h"
    2727#include "param/param.h"
     28
     29NTSTATUS ntvfs_print_init(void);
    2830
    2931/*
     
    114116       
    115117        /* fill in all the operations */
    116         ops.connect = print_connect;
    117         ops.disconnect = print_disconnect;
    118         ops.unlink = print_unlink;
    119         ops.ioctl = print_ioctl;
     118        ops.connect_fn = print_connect;
     119        ops.disconnect_fn = print_disconnect;
     120        ops.unlink_fn = print_unlink;
     121        ops.ioctl_fn = print_ioctl;
    120122
    121123        /* register ourselves with the NTVFS subsystem. We register under the name 'default'
Note: See TracChangeset for help on using the changeset viewer.