From ee483d8c570a63d47e34e17c4c21afa8e84b14df Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Wed, 10 Sep 2008 23:54:42 +0300 Subject: Make tdb_context database static Signed-off-by: Lennart Poettering --- src/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/cache.c b/src/cache.c index cb19dc3..51a5479 100644 --- a/src/cache.c +++ b/src/cache.c @@ -46,7 +46,7 @@ * when we port this to platforms that do not have POSIX threading */ static ca_mutex *mutex = NULL; -struct tdb_context *database = NULL; +static struct tdb_context *database = NULL; static void allocate_mutex_once(void) { mutex = ca_mutex_new(); -- cgit