summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-07 21:04:31 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-07-08 11:23:23 +0200
commit6e6aaacedb96ea45a5b8a9237915525a87189001 (patch)
tree8b396716924680b0fb5b7d03c21d481752c7901a /source3/smbd
parent6b2749f8a9f527c1d52ba76566c661cab30b59c6 (diff)
downloadsamba-6e6aaacedb96ea45a5b8a9237915525a87189001.tar.gz
samba-6e6aaacedb96ea45a5b8a9237915525a87189001.tar.bz2
samba-6e6aaacedb96ea45a5b8a9237915525a87189001.zip
lib/util Move bitmap.c to lib/util
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/conn.c1
-rw-r--r--source3/smbd/dir.c1
-rw-r--r--source3/smbd/files.c1
-rw-r--r--source3/smbd/smb2_server.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c
index a3f66b36be..f9ccfd96f5 100644
--- a/source3/smbd/conn.c
+++ b/source3/smbd/conn.c
@@ -22,6 +22,7 @@
#include "includes.h"
#include "smbd/smbd.h"
#include "smbd/globals.h"
+#include "lib/util/bitmap.h"
/* The connections bitmap is expanded in increments of BITMAP_BLOCK_SZ. The
* maximum size of the bitmap is the largest positive integer, but you will hit
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index fda7c34c57..fc74eea76c 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -23,6 +23,7 @@
#include "smbd/smbd.h"
#include "smbd/globals.h"
#include "libcli/security/security.h"
+#include "lib/util/bitmap.h"
/*
This module implements directory related functions for Samba.
diff --git a/source3/smbd/files.c b/source3/smbd/files.c
index b8a25c1d5b..66ccb288da 100644
--- a/source3/smbd/files.c
+++ b/source3/smbd/files.c
@@ -23,6 +23,7 @@
#include "libcli/security/security.h"
#include "util_tdb.h"
#include <ccan/hash/hash.h>
+#include "lib/util/bitmap.h"
#define VALID_FNUM(fnum) (((fnum) >= 0) && ((fnum) < real_max_open_files))
diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c
index 5882572162..ca03c8d762 100644
--- a/source3/smbd/smb2_server.c
+++ b/source3/smbd/smb2_server.c
@@ -26,6 +26,7 @@
#include "../lib/tsocket/tsocket.h"
#include "../lib/util/tevent_ntstatus.h"
#include "smbprofile.h"
+#include "../lib/util/bitmap.h"
#define OUTVEC_ALLOC_SIZE (SMB2_HDR_BODY + 9)