[sftp-client.c]
     indent
This commit is contained in:
Ben Lindstrom 2002-03-22 01:05:27 +00:00
Родитель eb50545365
Коммит 83b79e48df
2 изменённых файлов: 8 добавлений и 5 удалений

Просмотреть файл

@ -6,6 +6,9 @@
- itojun@cvs.openbsd.org 2002/03/11 03:18:49
[sftp-client.c]
correct type mismatches (u_int64_t != unsigned long long)
- itojun@cvs.openbsd.org 2002/03/11 03:19:53
[sftp-client.c]
indent
20020317
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
@ -7852,4 +7855,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1925 2002/03/22 01:03:15 mouring Exp $
$Id: ChangeLog,v 1.1926 2002/03/22 01:05:27 mouring Exp $

Просмотреть файл

@ -28,7 +28,7 @@
/* XXX: copy between two remote sites */
#include "includes.h"
RCSID("$OpenBSD: sftp-client.c,v 1.26 2002/03/11 03:18:49 itojun Exp $");
RCSID("$OpenBSD: sftp-client.c,v 1.27 2002/03/11 03:19:53 itojun Exp $");
#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
#include <sys/queue.h>
@ -884,9 +884,9 @@ do_download(struct sftp_conn *conn, char *remote_path, char *local_path,
/* Resend the request for the missing data */
debug3("Short data block, re-requesting "
"%llu -> %llu (%2d)",
(unsigned long long)req->offset + len,
(unsigned long long)req->offset + req->len - 1,
num_req);
(unsigned long long)req->offset + len,
(unsigned long long)req->offset +
req->len - 1, num_req);
req->id = conn->msg_id++;
req->len -= len;
req->offset += len;