Changeset 988 for vendor/current/source3/smbd/mangle.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/smbd/mangle.c
r740 r988 46 46 return; 47 47 48 method = lp_mangling_method( );48 method = lp_mangling_method(talloc_tos()); 49 49 50 50 /* find the first mangling method that manages to initialise and … … 105 105 const struct share_params *p) 106 106 { 107 if (!lp_mangled names(p)) {107 if (!lp_mangled_names(p)) { 108 108 return False; 109 109 } … … 141 141 /* name mangling can be disabled for speed, in which case 142 142 we just truncate the string */ 143 if (!lp_mangled names(p)) {143 if (!lp_mangled_names(p)) { 144 144 strlcpy(out, in, 13); 145 145 return True; … … 149 149 out, 150 150 cache83, 151 lp_default case(p->service),151 lp_default_case(p->service), 152 152 p); 153 153 }
Note:
See TracChangeset
for help on using the changeset viewer.