Ignore:
Timestamp:
May 24, 2009, 7:51:24 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/modules/gpfs.c

    r206 r223  
    2727static bool gpfs_share_modes;
    2828static bool gpfs_leases;
     29static bool gpfs_getrealfilename;
    2930
    3031static int (*gpfs_set_share_fn)(int fd, unsigned int allow, unsigned int deny);
     
    140141                                    int *buflen)
    141142{
    142         if (gpfs_get_realfilename_path_fn == NULL) {
     143        if ((!gpfs_getrealfilename)
     144            || (gpfs_get_realfilename_path_fn == NULL)) {
    143145                errno = ENOSYS;
    144146                return -1;
     
    209211        gpfs_share_modes = lp_parm_bool(-1, "gpfs", "sharemodes", True);
    210212        gpfs_leases      = lp_parm_bool(-1, "gpfs", "leases", True);
     213        gpfs_getrealfilename = lp_parm_bool(-1, "gpfs", "getrealfilename",
     214                                            True);
    211215
    212216        return;
Note: See TracChangeset for help on using the changeset viewer.