1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s3: Remove a call to procid_self()

This commit is contained in:
Volker Lendecke 2011-12-13 10:56:32 +01:00
parent 4066e291f5
commit 80b4a3aadc

View File

@ -238,10 +238,11 @@ static void cleanup_timeout_fn(struct event_context *event_ctx,
void *private_data) void *private_data)
{ {
struct timed_event **cleanup_te = (struct timed_event **)private_data; struct timed_event **cleanup_te = (struct timed_event **)private_data;
struct messaging_context *msg = smbd_messaging_context();
DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n")); DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n"));
message_send_all(smbd_messaging_context(), MSG_SMB_UNLOCK, NULL, 0, NULL); message_send_all(msg, MSG_SMB_UNLOCK, NULL, 0, NULL);
messaging_send_buf(smbd_messaging_context(), procid_self(), messaging_send_buf(msg, messaging_server_id(msg),
MSG_SMB_BRL_VALIDATE, NULL, 0); MSG_SMB_BRL_VALIDATE, NULL, 0);
/* mark the cleanup as having been done */ /* mark the cleanup as having been done */
(*cleanup_te) = NULL; (*cleanup_te) = NULL;