1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

s3:groupdb: Add missing newline to logging message

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-07 16:35:17 +12:00 committed by Andrew Bartlett
parent 45a50fa96b
commit 8ea7b8a0af

View File

@ -67,7 +67,7 @@ NTSTATUS add_initial_entry(gid_t gid, const char *sid, enum lsa_SidType sid_name
map->gid=gid;
if (!string_to_sid(&map->sid, sid)) {
DEBUG(0, ("string_to_sid failed: %s", sid));
DEBUG(0, ("string_to_sid failed: %s\n", sid));
status = NT_STATUS_UNSUCCESSFUL;
goto done;
}