Ignore:
Timestamp:
May 27, 2009, 11:39:15 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/smbd/trans2.c

    r232 r233  
    49724972
    49734973static NTSTATUS smb_set_file_dosmode(connection_struct *conn,
     4974                                files_struct *fsp,
    49744975                                const char *fname,
    49754976                                SMB_STRUCT_STAT *psbuf,
     
    49804981        }
    49814982
     4983        if (fsp) {
     4984                if (fsp->base_fsp) {
     4985                        fname = fsp->base_fsp->fsp_name;
     4986                } else {
     4987                        fname = fsp->fsp_name;
     4988                }
     4989        }
     4990               
    49824991        if (dosmode) {
    49834992                if (S_ISDIR(psbuf->st_mode)) {
     
    57045713        dosmode = IVAL(pdata,32);
    57055714        status = smb_set_file_dosmode(conn,
    5706                                         fname,
    5707                                         psbuf,
    5708                                         dosmode);
     5715                                fsp,
     5716                                fname,
     5717                                psbuf,
     5718                                dosmode);
     5719
    57095720        if (!NT_STATUS_IS_OK(status)) {
    57105721                return status;
Note: See TracChangeset for help on using the changeset viewer.