Changeset 740 for vendor/current/source4/libcli/clifile.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/libcli/clifile.c
r414 r740 56 56 uint32_t unix_perms_to_wire(mode_t perms) 57 57 { 58 u int_t ret = 0;58 unsigned int ret = 0; 59 59 60 60 ret |= ((perms & S_IXOTH) ? UNIX_X_OTH : 0); … … 242 242 open_parms.ntcreatex.level = RAW_OPEN_NTCREATEX; 243 243 open_parms.ntcreatex.in.flags = CreatFlags; 244 open_parms.ntcreatex.in.root_fid = 0;244 open_parms.ntcreatex.in.root_fid.fnum = 0; 245 245 open_parms.ntcreatex.in.access_mask = DesiredAccess; 246 246 open_parms.ntcreatex.in.file_attr = FileAttributes; … … 272 272 { 273 273 union smb_open open_parms; 274 u int_t openfn=0;275 u int_t accessmode=0;274 unsigned int openfn=0; 275 unsigned int accessmode=0; 276 276 TALLOC_CTX *mem_ctx; 277 277 NTSTATUS status;
Note:
See TracChangeset
for help on using the changeset viewer.