From d7925fdf46464be8c18662e2043d8dedbafd3662 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 22 Sep 2005 16:03:44 +0000 Subject: [PATCH] More bytes --- commands/ftp/file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/ftp/file.c b/commands/ftp/file.c index ab2c6f882..beee1959d 100755 --- a/commands/ftp/file.c +++ b/commands/ftp/file.c @@ -84,7 +84,7 @@ unsigned long total=0L; } } if(atty) { - printf("%8lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); + printf("%9lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); fflush(stdout); } } @@ -114,7 +114,7 @@ unsigned long total=0L; write(fdout, buffer, s); total += (long)s; if(atty) { - printf("%8lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); + printf("%9lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); fflush(stdout); } } @@ -183,7 +183,7 @@ unsigned long total=0L; } } if(atty && fd > 2) { - printf("%8lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); + printf("%9lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); fflush(stdout); } } @@ -213,7 +213,7 @@ unsigned long total=0L; write(fd, buffer, s); total += (long)s; if(atty && fd > 2) { - printf("%8lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); + printf("%9lu bytes\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b", total); fflush(stdout); } } -- 2.44.0