diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 19:44:57 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:28 +0200 |
commit | 8ea271bb2e9e94093c1849a5840bb3a2a38f728e (patch) | |
tree | 583fe49e5afedc64459b6fde955f3d8a91a588db /source3/smbd/oplock_linux.c | |
parent | 02a42a0a1d7d10495711e1a8621d45629e810c67 (diff) | |
download | samba-8ea271bb2e9e94093c1849a5840bb3a2a38f728e.tar.gz |
s3: Remove smbd_messaging_context() from linux_oplock_signal_handler()
Diffstat (limited to 'source3/smbd/oplock_linux.c')
-rw-r--r-- | source3/smbd/oplock_linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/oplock_linux.c b/source3/smbd/oplock_linux.c index c60c7451771..fe9c58d7ecd 100644 --- a/source3/smbd/oplock_linux.c +++ b/source3/smbd/oplock_linux.c @@ -102,7 +102,7 @@ static void linux_oplock_signal_handler(struct tevent_context *ev_ctx, DEBUG(0,("linux_oplock_signal_handler: failed to find fsp for file fd=%d (file was closed ?)\n", fd )); return; } - break_kernel_oplock(smbd_messaging_context(), fsp); + break_kernel_oplock(fsp->conn->sconn->msg_ctx, fsp); } /**************************************************************************** |