From: Joseph Sutton Date: Mon, 7 Aug 2023 04:35:17 +0000 (+1200) Subject: s3:groupdb: Add missing newline to logging message X-Git-Tag: tevent-0.16.0~1155 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ea7b8a0af7a127acd04f8cb5517718c95205ee0;p=thirdparty%2Fsamba.git s3:groupdb: Add missing newline to logging message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index d646e979e8d..cb6a6112961 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -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; }