1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

s4:samba: 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:54:26 +12:00 committed by Andrew Bartlett
parent 56561fd045
commit 6386306671

View File

@ -363,7 +363,7 @@ static void prefork_fork_master(
struct talloc_ctx *ctx = talloc_new(NULL);
char *name = NULL;
if (ctx == NULL) {
DBG_ERR("Out of memory");
DBG_ERR("Out of memory\n");
exit(127);
}
name = talloc_asprintf(ctx, "prefork-master-%s", service_name);