From 1fabcf0a12fabf5ab1f4df3298fbf24d990f60cc Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Tue, 9 Mar 2004 18:58:19 +0000 Subject: Fix to debug message lacking termination with '\n'. rafal (This used to be commit 2a7dd469430459d124cb48d516b82766a2a249bc) --- source3/groupdb/mapping.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'source3/groupdb') diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index 71ef38e6c8..d10a7decb7 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -177,7 +177,7 @@ static BOOL add_mapping_entry(GROUP_MAP *map, int flag) int len; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -208,7 +208,7 @@ BOOL add_initial_entry(gid_t gid, const char *sid, enum SID_NAME_USE sid_name_us GROUP_MAP map; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -237,7 +237,7 @@ static BOOL get_group_map_from_sid(DOM_SID sid, GROUP_MAP *map) int ret = 0; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -279,7 +279,7 @@ static BOOL get_group_map_from_gid(gid_t gid, GROUP_MAP *map) int ret; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -329,7 +329,7 @@ static BOOL get_group_map_from_ntname(const char *name, GROUP_MAP *map) int ret; if(!init_group_mapping()) { - DEBUG(0,("get_group_map_from_ntname:failed to initialize group mapping")); + DEBUG(0,("get_group_map_from_ntname:failed to initialize group mapping\n")); return(False); } @@ -379,7 +379,7 @@ static BOOL group_map_remove(DOM_SID sid) fstring string_sid; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -419,7 +419,7 @@ static BOOL enum_group_mapping(enum SID_NAME_USE sid_name_use, GROUP_MAP **rmap, int entries=0; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -507,7 +507,7 @@ BOOL get_domain_group_from_sid(DOM_SID sid, GROUP_MAP *map) BOOL ret; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -556,7 +556,7 @@ BOOL get_local_group_from_sid(DOM_SID *sid, GROUP_MAP *map) BOOL ret; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -615,7 +615,7 @@ BOOL get_builtin_group_from_sid(DOM_SID *sid, GROUP_MAP *map) if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -652,7 +652,7 @@ BOOL get_group_from_gid(gid_t gid, GROUP_MAP *map) BOOL ret; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } @@ -709,7 +709,7 @@ BOOL get_sid_list_of_group(gid_t gid, DOM_SID **sids, int *num_sids) struct sys_pwent *user; if(!init_group_mapping()) { - DEBUG(0,("failed to initialize group mapping")); + DEBUG(0,("failed to initialize group mapping\n")); return(False); } -- cgit