Ignore:
Timestamp:
Nov 14, 2012, 12:59:34 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to 3.6.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/libcli/clifile.c

    r414 r740  
    5656uint32_t unix_perms_to_wire(mode_t perms)
    5757{
    58         uint_t ret = 0;
     58        unsigned int ret = 0;
    5959
    6060        ret |= ((perms & S_IXOTH) ?  UNIX_X_OTH : 0);
     
    242242        open_parms.ntcreatex.level = RAW_OPEN_NTCREATEX;
    243243        open_parms.ntcreatex.in.flags = CreatFlags;
    244         open_parms.ntcreatex.in.root_fid = 0;
     244        open_parms.ntcreatex.in.root_fid.fnum = 0;
    245245        open_parms.ntcreatex.in.access_mask = DesiredAccess;
    246246        open_parms.ntcreatex.in.file_attr = FileAttributes;
     
    272272{
    273273        union smb_open open_parms;
    274         uint_t openfn=0;
    275         uint_t accessmode=0;
     274        unsigned int openfn=0;
     275        unsigned int accessmode=0;
    276276        TALLOC_CTX *mem_ctx;
    277277        NTSTATUS status;
Note: See TracChangeset for help on using the changeset viewer.