From d71c04f927cbcbaae0708c1533748caac20ee5af Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 4 Oct 1998 04:48:17 +0000 Subject: use dummy file descriptors opened on /dev/null to ensure that the smbw file descriptor allocation order is identical to the kernels. (This used to be commit 60a683465647932f7241ba9f92443d5e5294e20b) --- source3/lib/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/bitmap.c') diff --git a/source3/lib/bitmap.c b/source3/lib/bitmap.c index 9ccdbb420b..93c821c528 100644 --- a/source3/lib/bitmap.c +++ b/source3/lib/bitmap.c @@ -81,7 +81,7 @@ BOOL bitmap_clear(struct bitmap *bm, unsigned i) /**************************************************************************** query a bit in a bitmap ****************************************************************************/ -static BOOL bitmap_query(struct bitmap *bm, unsigned i) +BOOL bitmap_query(struct bitmap *bm, unsigned i) { if (i >= bm->n) return False; if (bm->b[i/32] & (1<<(i%32))) { -- cgit