summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sftp-client.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a70ec21c..4d4b64739 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -107,6 +107,9 @@
107 - jmc@cvs.openbsd.org 2006/02/13 11:27:25 107 - jmc@cvs.openbsd.org 2006/02/13 11:27:25
108 [sshd.8] 108 [sshd.8]
109 sort FILES and use a -compact list; 109 sort FILES and use a -compact list;
110 - david@cvs.openbsd.org 2006/02/15 05:08:24
111 [sftp-client.c]
112 typo in comment; ok djm@
110 113
11120060313 11420060313
112 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 115 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4008,4 +4011,4 @@
4008 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4011 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4009 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4012 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4010 4013
4011$Id: ChangeLog,v 1.4169 2006/03/15 00:33:56 djm Exp $ 4014$Id: ChangeLog,v 1.4170 2006/03/15 00:34:25 djm Exp $
diff --git a/sftp-client.c b/sftp-client.c
index 05bce3368..9dfdf5ad5 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -20,7 +20,7 @@
20/* XXX: copy between two remote sites */ 20/* XXX: copy between two remote sites */
21 21
22#include "includes.h" 22#include "includes.h"
23RCSID("$OpenBSD: sftp-client.c,v 1.58 2006/01/02 01:20:31 djm Exp $"); 23RCSID("$OpenBSD: sftp-client.c,v 1.59 2006/02/15 05:08:24 david Exp $");
24 24
25#include "openbsd-compat/sys-queue.h" 25#include "openbsd-compat/sys-queue.h"
26 26
@@ -39,7 +39,7 @@ RCSID("$OpenBSD: sftp-client.c,v 1.58 2006/01/02 01:20:31 djm Exp $");
39extern volatile sig_atomic_t interrupted; 39extern volatile sig_atomic_t interrupted;
40extern int showprogress; 40extern int showprogress;
41 41
42/* Minimum amount of data to read at at time */ 42/* Minimum amount of data to read at a time */
43#define MIN_READ_SIZE 512 43#define MIN_READ_SIZE 512
44 44
45struct sftp_conn { 45struct sftp_conn {