Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/smbd/mangle.c

    r740 r988  
    4646                return;
    4747
    48         method = lp_mangling_method();
     48        method = lp_mangling_method(talloc_tos());
    4949
    5050        /* find the first mangling method that manages to initialise and
     
    105105                   const struct share_params *p)
    106106{
    107         if (!lp_manglednames(p)) {
     107        if (!lp_mangled_names(p)) {
    108108                return False;
    109109        }
     
    141141        /* name mangling can be disabled for speed, in which case
    142142           we just truncate the string */
    143         if (!lp_manglednames(p)) {
     143        if (!lp_mangled_names(p)) {
    144144                strlcpy(out, in, 13);
    145145                return True;
     
    149149                                out,
    150150                                cache83,
    151                                 lp_defaultcase(p->service),
     151                                lp_default_case(p->service),
    152152                                p);
    153153}
Note: See TracChangeset for help on using the changeset viewer.