From: Joseph Sutton Date: Mon, 7 Aug 2023 04:34:52 +0000 (+1200) Subject: s3:client: Add missing newlines to logging messages X-Git-Tag: tevent-0.16.0~1158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8505094b3b9faf0370beb1ef41702e1ea97d11aa;p=thirdparty%2Fsamba.git s3:client: Add missing newlines to logging messages Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/client/client.c b/source3/client/client.c index 68011679d7e..0948e6a07fd 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -620,7 +620,7 @@ static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *fin ctx, &sd); if (!NT_STATUS_IS_OK(status)) { DEBUG( 0, ("display_finfo() failed to " - "get security descriptor: %s", + "get security descriptor: %s\n", nt_errstr(status))); } else { display_sec_desc(sd); @@ -2198,7 +2198,7 @@ static int cmd_mput(void) } if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) && !do_mkdir(rname)) { - DEBUG (0, ("Unable to make dir, skipping...")); + DEBUG (0, ("Unable to make dir, skipping...\n")); /* Skip the directory */ lname[strlen(lname)-1] = '/'; if (!seek_list(temp_list, lname)) {