View | Details | Raw Unified | Return to bug 842 | Differences between
and this patch

Collapse All | Expand All

(-)sftp-client.c (-2 / +2 lines)
Lines 984-990 do_upload(struct sftp_conn *conn, char * Link Here
984
{
984
{
985
	int local_fd, status;
985
	int local_fd, status;
986
	u_int handle_len, id, type;
986
	u_int handle_len, id, type;
987
	u_int64_t offset;
987
	off_t offset;
988
	char *handle, *data;
988
	char *handle, *data;
989
	Buffer msg;
989
	Buffer msg;
990
	struct stat sb;
990
	struct stat sb;
Lines 994-1000 do_upload(struct sftp_conn *conn, char * Link Here
994
	struct outstanding_ack {
994
	struct outstanding_ack {
995
		u_int id;
995
		u_int id;
996
		u_int len;
996
		u_int len;
997
		u_int64_t offset;
997
		off_t offset;
998
		TAILQ_ENTRY(outstanding_ack) tq;
998
		TAILQ_ENTRY(outstanding_ack) tq;
999
	};
999
	};
1000
	TAILQ_HEAD(ackhead, outstanding_ack) acks;
1000
	TAILQ_HEAD(ackhead, outstanding_ack) acks;

Return to bug 842