From: Stefan Metzmacher Date: Tue, 13 Dec 2011 13:24:58 +0000 (+0100) Subject: s3:smbd/oplock_onefs: avoid using smbd_messaging_context() X-Git-Url: http://git.samba.org/?p=kai%2Fsamba.git;a=commitdiff_plain;h=6630b20046915d883a1cc1a1e8c8272756c60e6a s3:smbd/oplock_onefs: avoid using smbd_messaging_context() metze --- diff --git a/source3/smbd/oplock_onefs.c b/source3/smbd/oplock_onefs.c index 9e427a3607f..615747e92cb 100644 --- a/source3/smbd/oplock_onefs.c +++ b/source3/smbd/oplock_onefs.c @@ -309,7 +309,7 @@ static void oplock_break_to_none_handler(uint64_t id) init_share_mode_entry(&sme, cb, FORCE_OPLOCK_BREAK_TO_NONE); share_mode_entry_to_message(msg, &sme); - messaging_send_buf(smbd_messaging_context(), + messaging_send_buf(cb->sconn->msg_ctx, sme.pid, MSG_SMB_ASYNC_LEVEL2_BREAK, (uint8_t *)msg, @@ -346,7 +346,7 @@ static void oplock_break_to_level_two_handler(uint64_t id) init_share_mode_entry(&sme, cb, LEVEL_II_OPLOCK); share_mode_entry_to_message(msg, &sme); - messaging_send_buf(smbd_messaging_context(), + messaging_send_buf(cb->sconn->msg_ctx, sme.pid, MSG_SMB_BREAK_REQUEST, (uint8_t *)msg,