From 95931c8c0a8a55c1d47c29fccba504fbe409f7fe Mon Sep 17 00:00:00 2001 From: Richard Alpe Date: Tue, 11 Mar 2025 09:30:19 +0100 Subject: [PATCH] bin: copy: add newline to same-same error message Signed-off-by: Richard Alpe --- src/bin/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/copy.c b/src/bin/copy.c index 99e2e804..80235718 100644 --- a/src/bin/copy.c +++ b/src/bin/copy.c @@ -202,7 +202,7 @@ static int copy(const char *src, const char *dst, const char *remote_user) goto err; if (!strcmp(src, dst)) { - fprintf(stderr, ERRMSG "source and destination are the same, aborting."); + fprintf(stderr, ERRMSG "source and destination are the same, aborting.\n"); goto err; }