Changeset 740 for vendor/current/source3/smbd/statcache.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/smbd/statcache.c
r414 r740 22 22 23 23 #include "includes.h" 24 #include "memcache.h" 25 #include "smbd/smbd.h" 26 #include "messages.h" 27 #include "smbprofile.h" 28 #include <tdb.h> 24 29 25 30 /**************************************************************************** … … 336 341 **************************************************************************/ 337 342 338 void send_stat_cache_delete_message(const char *name) 343 void send_stat_cache_delete_message(struct messaging_context *msg_ctx, 344 const char *name) 339 345 { 340 346 #ifdef DEVELOPER 341 message_send_all( smbd_messaging_context(),347 message_send_all(msg_ctx, 342 348 MSG_SMB_STAT_CACHE_DELETE, 343 349 name, … … 372 378 ***************************************************************/ 373 379 374 unsigned int fast_string_hash( TDB_DATA *key)380 unsigned int fast_string_hash(struct TDB_DATA *key) 375 381 { 376 382 unsigned int n = 0;
Note:
See TracChangeset
for help on using the changeset viewer.