diff options
author | Wilbern Cobb <wcobb@cvs.openbsd.org> | 2002-11-26 00:45:04 +0000 |
---|---|---|
committer | Wilbern Cobb <wcobb@cvs.openbsd.org> | 2002-11-26 00:45:04 +0000 |
commit | 05fac4d8fd89533ada575fcedaac2375eb557fab (patch) | |
tree | c565b79ee97f444e13d5c3b662e218c451467915 /usr.bin/ssh/scp.c | |
parent | 94a1065f6507f2f2e7a37ae975492385c37ce53f (diff) |
Remove unnecessary fflush(stderr) calls, stderr is unbuffered by default.
ok markus@
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r-- | usr.bin/ssh/scp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index e55535c51c0..254b9e2d688 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -75,7 +75,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: scp.c,v 1.92 2002/11/07 22:35:38 markus Exp $"); +RCSID("$OpenBSD: scp.c,v 1.93 2002/11/26 00:45:03 wcobb Exp $"); #include "xmalloc.h" #include "atomicio.h" @@ -552,7 +552,6 @@ syserr: run_err("%s: %s", name, strerror(errno)); (long long)stb.st_size, last); if (verbose_mode) { fprintf(stderr, "Sending file modes: %s", buf); - fflush(stderr); } (void) atomicio(write, remout, buf, strlen(buf)); if (response() < 0) |