From 968c91b8837992b0f26dbf08d0cfccf9475412e8 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 3 Jul 2008 11:09:32 +0200 Subject: Fix build warning. Thanks to Thorkil Olesen. Guenther (This used to be commit 3130aa63fd64c08c1d8be8338d6490aeb12c234a) --- source3/groupdb/mapping_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/groupdb/mapping_tdb.c b/source3/groupdb/mapping_tdb.c index c6d9735e11..f1168887f9 100644 --- a/source3/groupdb/mapping_tdb.c +++ b/source3/groupdb/mapping_tdb.c @@ -127,7 +127,7 @@ static bool add_mapping_entry(GROUP_MAP *map, int flag) key = group_mapping_key(talloc_tos(), &map->sid); if (key == NULL) { - return NULL; + return false; } len = tdb_pack(NULL, 0, "ddff", -- cgit