summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-08-02 17:07:07 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-08-02 17:07:07 +1000
commit408585391520e7131d6b2dc73b8e17211c009568 (patch)
treed20918a13983c4045561f6c2198ad9144a01ff68 /scp.c
parent9786e6e2a034a8273b5d0d3b8cd8caf063bb875a (diff)
- dtucker@cvs.openbsd.org 2005/07/27 10:39:03
[scp.c hostfile.c sftp-client.c] Silence bogus -Wuninitialized warnings; ok djm@
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scp.c b/scp.c
index 10c4b507c..1407aa71d 100644
--- a/scp.c
+++ b/scp.c
@@ -71,7 +71,7 @@
71 */ 71 */
72 72
73#include "includes.h" 73#include "includes.h"
74RCSID("$OpenBSD: scp.c,v 1.124 2005/06/17 02:44:33 djm Exp $"); 74RCSID("$OpenBSD: scp.c,v 1.125 2005/07/27 10:39:03 dtucker Exp $");
75 75
76#include "xmalloc.h" 76#include "xmalloc.h"
77#include "atomicio.h" 77#include "atomicio.h"
@@ -506,7 +506,7 @@ source(int argc, char **argv)
506 BUF *bp; 506 BUF *bp;
507 off_t i, amt, statbytes; 507 off_t i, amt, statbytes;
508 size_t result; 508 size_t result;
509 int fd, haderr, indx; 509 int fd = -1, haderr, indx;
510 char *last, *name, buf[2048]; 510 char *last, *name, buf[2048];
511 int len; 511 int len;
512 512