1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

Fix to debug message lacking termination with '\n'.

rafal
This commit is contained in:
Rafal Szczesniak -
parent 11fc4da07f
commit 2a7dd46943

View File

@ -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);
}