diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-14 20:31:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:04 -0500 |
commit | fad7dd8a60e6637598b17fa89ec92d98db51fffe (patch) | |
tree | 23e6622f52c1b25502b6a622d81782dbdd89c0e4 /source3/smbd/blocking.c | |
parent | 1f073a0319b040b25a16046b9e1b37520109ecb8 (diff) | |
download | samba-fad7dd8a60e6637598b17fa89ec92d98db51fffe.tar.gz samba-fad7dd8a60e6637598b17fa89ec92d98db51fffe.tar.xz samba-fad7dd8a60e6637598b17fa89ec92d98db51fffe.zip |
r22868: Replace some message_send_pid calls with messaging_send_pid calls. More
tomorrow.
(This used to be commit 74fa57ca5d7fa8eace72bbe948a08a0bca3cc4ca)
Diffstat (limited to 'source3/smbd/blocking.c')
-rw-r--r-- | source3/smbd/blocking.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c index ab2b0949bd6..ae7b861f2b0 100644 --- a/source3/smbd/blocking.c +++ b/source3/smbd/blocking.c @@ -893,9 +893,9 @@ BOOL blocking_lock_cancel(files_struct *fsp, memcpy(msg, &blr, sizeof(blr)); memcpy(&msg[sizeof(blr)], &err, sizeof(NTSTATUS)); - message_send_pid(pid_to_procid(sys_getpid()), - MSG_SMB_BLOCKING_LOCK_CANCEL, - &msg, sizeof(msg), True); + messaging_send_buf(smbd_messaging_context(), procid_self(), + MSG_SMB_BLOCKING_LOCK_CANCEL, + (uint8 *)&msg, sizeof(msg)); return True; } |