]> andersk Git - openssh.git/commitdiff
- itojun@cvs.openbsd.org 2002/03/08 06:10:16
authormouring <mouring>
Fri, 22 Mar 2002 01:00:57 +0000 (01:00 +0000)
committermouring <mouring>
Fri, 22 Mar 2002 01:00:57 +0000 (01:00 +0000)
     [sftp-client.c]
     printf type mismatch

ChangeLog
sftp-client.c

index 87ed4f19ce4bb622e4943fc2b6a4ce8e97d21d81..97d9388ea9699b0a642ef9a1b75c8ffc1205cb30 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20020321
+ - (bal) OpenBSD CVS Sync
+   - itojun@cvs.openbsd.org 2002/03/08 06:10:16
+     [sftp-client.c]
+     printf type mismatch
+
 20020317
  - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
    warn if directory does not exist. Put system directories in front of
index 17ac14a95e31c8dfe104ec5d6e53106a732ec27f..f3d752cdb4d5c6032e3fddecb61549f13dd3403f 100644 (file)
@@ -28,7 +28,7 @@
 /* XXX: copy between two remote sites */
 
 #include "includes.h"
-RCSID("$OpenBSD: sftp-client.c,v 1.24 2002/02/24 16:57:19 markus Exp $");
+RCSID("$OpenBSD: sftp-client.c,v 1.25 2002/03/08 06:10:16 itojun Exp $");
 
 #if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
 #include <sys/queue.h>
@@ -821,7 +821,9 @@ do_download(struct sftp_conn *conn, char *remote_path, char *local_path,
                /* Send some more requests */
                while (num_req < max_req) {
                        debug3("Request range %llu -> %llu (%d/%d)", 
-                           offset, offset + buflen - 1, num_req, max_req);
+                           (unsigned long long)offset,
+                           (unsigned long long)offset + buflen - 1,
+                           num_req, max_req);
                        req = xmalloc(sizeof(*req));
                        req->id = conn->msg_id++;
                        req->len = buflen;
This page took 0.047438 seconds and 5 git commands to generate.