diff options
author | Rafal Szczesniak <mimir@samba.org> | 2004-03-09 18:58:19 +0000 |
---|---|---|
committer | Rafal Szczesniak <mimir@samba.org> | 2004-03-09 18:58:19 +0000 |
commit | 1fabcf0a12fabf5ab1f4df3298fbf24d990f60cc (patch) | |
tree | 0112fcc028e7fa1706da9f49e89662ee03affb64 /source3/groupdb | |
parent | f089f978c22513fd88216b83a1b877cb8798c834 (diff) | |
download | samba-1fabcf0a12fabf5ab1f4df3298fbf24d990f60cc.tar.gz samba-1fabcf0a12fabf5ab1f4df3298fbf24d990f60cc.tar.bz2 samba-1fabcf0a12fabf5ab1f4df3298fbf24d990f60cc.zip |
Fix to debug message lacking termination with '\n'.
rafal
(This used to be commit 2a7dd469430459d124cb48d516b82766a2a249bc)
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/mapping.c | 24 |
1 files changed, 12 insertions, 12 deletions
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); } |