bin: copy: add newline to same-same error message

Signed-off-by: Richard Alpe <richard@bit42.se>
This commit is contained in:
Richard Alpe
2025-03-11 09:30:19 +01:00
parent dd788f5611
commit 95931c8c0a
+1 -1
View File
@@ -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;
}