Changeset 745 for trunk/server/source3/modules/vfs_hpuxacl.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/modules/vfs_hpuxacl.c
r414 r745 48 48 49 49 #include "includes.h" 50 #include "system/filesys.h" 51 #include "smbd/smbd.h" 52 #include "modules/vfs_hpuxacl.h" 53 50 54 51 55 /* … … 190 194 /* For all I see, the info should already be in the fsp 191 195 * parameter, but get it again to be safe --- necessary? */ 192 files_struct *file_struct_p = file_find_fd(fsp->fh->fd); 196 files_struct *file_struct_p = file_find_fd(fsp->conn->sconn, 197 fsp->fh->fd); 193 198 if (file_struct_p == NULL) { 194 199 errno = EBADF; … … 329 334 /* For all I see, the info should already be in the fsp 330 335 * parameter, but get it again to be safe --- necessary? */ 331 files_struct *file_struct_p = file_find_fd(fsp->fh->fd); 336 files_struct *file_struct_p = file_find_fd(fsp->conn->sconn, 337 fsp->fh->fd); 332 338 if (file_struct_p == NULL) { 333 339 errno = EBADF;
Note:
See TracChangeset
for help on using the changeset viewer.