From: Joseph Sutton Date: Tue, 8 Aug 2023 00:15:00 +0000 (+1200) Subject: s3:client: Remove unnecessary newline from logging message X-Git-Tag: tevent-0.16.0~1156 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45a50fa96ba3f6a8b78940b4080861d515f2d093;p=thirdparty%2Fsamba.git s3:client: Remove unnecessary newline from logging message time_to_asc() adds a trailing newline of its own. Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/client/clitar.c b/source3/client/clitar.c index f42f2f02fbd..14b98111b75 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -1295,7 +1295,7 @@ static int tar_set_newer_than(struct tar *t, const char *filename) } newer_than = convert_timespec_to_time_t(stbuf.st_ex_mtime); - DBG(1, ("Getting files newer than %s\n", time_to_asc(newer_than))); + DBG(1, ("Getting files newer than %s", time_to_asc(newer_than))); return 0; }