Changeset 988 for vendor/current/source3/smbd/perfcount.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/smbd/perfcount.c
r740 r988 86 86 entry = SMB_XMALLOC_P(struct smb_perfcount_module); 87 87 entry->name = smb_xstrdup(name); 88 entry->handlers = (struct smb_perfcount_handlers*) handlers;88 entry->handlers = discard_const_p(struct smb_perfcount_handlers, handlers); 89 89 90 90 DLIST_ADD(modules, entry); … … 177 177 char *perfcount_object; 178 178 179 perfcount_object = lp_perfcount_module( );179 perfcount_object = lp_perfcount_module(talloc_tos()); 180 180 181 181 /* don't init */
Note:
See TracChangeset
for help on using the changeset viewer.