From 16a133339a40396064effee3de55f6b2a887d3d2 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 13 Feb 2002 14:03:56 +1100 Subject: - djm@cvs.openbsd.org 2002/02/12 12:32:27 [sftp.1 sftp.c sftp-client.c sftp-client.h sftp-int.c] Perform multiple overlapping read/write requests in file transfer. Mostly done by Tobias Ringstrom ; ok markus@ --- sftp-client.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sftp-client.h') diff --git a/sftp-client.h b/sftp-client.h index 20350701c..477c8ed3b 100644 --- a/sftp-client.h +++ b/sftp-client.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.h,v 1.7 2002/02/05 00:00:46 djm Exp $ */ +/* $OpenBSD: sftp-client.h,v 1.8 2002/02/12 12:32:27 djm Exp $ */ /* * Copyright (c) 2001-2002 Damien Miller. All rights reserved. @@ -94,10 +94,10 @@ char *do_readlink(int, int, char *); * Download 'remote_path' to 'local_path'. Preserve permissions and times * if 'pflag' is set */ -int do_download(int, int, char *, char *, int, size_t); +int do_download(int, int, char *, char *, int, size_t, int); /* * Upload 'local_path' to 'remote_path'. Preserve permissions and times * if 'pflag' is set */ -int do_upload(int, int, char *, char *, int , size_t); +int do_upload(int, int, char *, char *, int , size_t, int); -- cgit v1.2.3