Changeset 223 for branches/samba-3.3.x/source/modules/gpfs.c
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/modules/gpfs.c
r206 r223 27 27 static bool gpfs_share_modes; 28 28 static bool gpfs_leases; 29 static bool gpfs_getrealfilename; 29 30 30 31 static int (*gpfs_set_share_fn)(int fd, unsigned int allow, unsigned int deny); … … 140 141 int *buflen) 141 142 { 142 if (gpfs_get_realfilename_path_fn == NULL) { 143 if ((!gpfs_getrealfilename) 144 || (gpfs_get_realfilename_path_fn == NULL)) { 143 145 errno = ENOSYS; 144 146 return -1; … … 209 211 gpfs_share_modes = lp_parm_bool(-1, "gpfs", "sharemodes", True); 210 212 gpfs_leases = lp_parm_bool(-1, "gpfs", "leases", True); 213 gpfs_getrealfilename = lp_parm_bool(-1, "gpfs", "getrealfilename", 214 True); 211 215 212 216 return;
Note:
See TracChangeset
for help on using the changeset viewer.