From 3dde0cbb769b92d922be13677ad076cae9b6a693 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 8 Jan 2009 12:03:45 +0100 Subject: s3:smbd: move all globals and static variables in globals.[ch] The goal is to move all this variables into a big context structure. metze --- source3/smbd/notify.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/smbd/notify.c') diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c index 2d0811bc1c..7ffe62058c 100644 --- a/source3/smbd/notify.c +++ b/source3/smbd/notify.c @@ -20,6 +20,7 @@ */ #include "includes.h" +#include "smbd/globals.h" struct notify_change_request { struct notify_change_request *prev, *next; @@ -33,8 +34,6 @@ struct notify_change_request { static void notify_fsp(files_struct *fsp, uint32 action, const char *name); -static struct notify_mid_map *notify_changes_by_mid; - /* * For NTCancel, we need to find the notify_change_request indexed by * mid. Separate list here. -- cgit