]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:client: Remove unnecessary newline from logging message
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Tue, 8 Aug 2023 00:15:00 +0000 (12:15 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:37 +0000 (04:39 +0000)
time_to_asc() adds a trailing newline of its own.

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/client/clitar.c

index f42f2f02fbde5ae555f7ddd518b5028e79db1c29..14b98111b750bfa95c0ef6276227a8fde7977bf5 100644 (file)
@@ -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;
 }