summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 13:49:43 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 13:49:43 +1100
commit745570cd7991f2a47649b414084496128326f5d3 (patch)
tree9805252b7c76cc98127a5482404c735dba17e22f /scp.c
parentcb314828eb11b3827a096d9b4abcd8d229764a46 (diff)
- biorn@cvs.openbsd.org 2006/03/16 10:31:45
[scp.c] Try to display errormessage even if remout == -1 ok djm@, markus@
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/scp.c b/scp.c
index 43fd50c9e..bf9db97cf 100644
--- a/scp.c
+++ b/scp.c
@@ -1106,15 +1106,15 @@ run_err(const char *fmt,...)
1106 va_list ap; 1106 va_list ap;
1107 1107
1108 ++errs; 1108 ++errs;
1109 if (fp == NULL && !(fp = fdopen(remout, "w"))) 1109 if (fp != NULL || (remout != -1 && (fp = fdopen(remout, "w")))) {
1110 return; 1110 (void) fprintf(fp, "%c", 0x01);
1111 (void) fprintf(fp, "%c", 0x01); 1111 (void) fprintf(fp, "scp: ");
1112 (void) fprintf(fp, "scp: "); 1112 va_start(ap, fmt);
1113 va_start(ap, fmt); 1113 (void) vfprintf(fp, fmt, ap);
1114 (void) vfprintf(fp, fmt, ap); 1114 va_end(ap);
1115 va_end(ap); 1115 (void) fprintf(fp, "\n");
1116 (void) fprintf(fp, "\n"); 1116 (void) fflush(fp);
1117 (void) fflush(fp); 1117 }
1118 1118
1119 if (!iamremote) { 1119 if (!iamremote) {
1120 va_start(ap, fmt); 1120 va_start(ap, fmt);