From 5d43180a550b7b4ad4613e99437cb92a1ef7ebd9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 12 Jun 2010 13:20:17 +0200 Subject: s3: Explicitly pass sconn to the remove_pending_change_notify_request_by_mid --- source3/smbd/notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/notify.c') diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c index 926bbb788b..dc13aadadd 100644 --- a/source3/smbd/notify.c +++ b/source3/smbd/notify.c @@ -297,10 +297,10 @@ static void change_notify_remove_request(struct smbd_server_connection *sconn, Delete entries by mid from the change notify pending queue. Always send reply. *****************************************************************************/ -void remove_pending_change_notify_requests_by_mid(uint64_t mid) +void remove_pending_change_notify_requests_by_mid( + struct smbd_server_connection *sconn, uint64_t mid) { struct notify_mid_map *map; - struct smbd_server_connection *sconn = smbd_server_conn; for (map = sconn->smb1.notify_mid_maps; map; map = map->next) { if (map->mid == mid) { -- cgit