Index: sftp-server.c =================================================================== RCS file: /cvs/openssh/sftp-server.c,v retrieving revision 1.58 diff -u -r1.58 sftp-server.c --- sftp-server.c 3 Oct 2005 08:11:25 -0000 1.58 +++ sftp-server.c 22 Nov 2005 18:32:52 -0000 @@ -428,7 +428,7 @@ len = get_int(); TRACE("read id %u handle %d off %llu len %d", id, handle, - (u_int64_t)off, len); + (unsigned long long)off, len); if (len > sizeof buf) { len = sizeof buf; logit("read change len %d", len); @@ -469,7 +469,7 @@ data = get_string(&len); TRACE("write id %u handle %d off %llu len %d", id, handle, - (u_int64_t)off, len); + (unsigned long long)off, len); fd = handle_to_fd(handle); if (fd >= 0) { if (lseek(fd, off, SEEK_SET) < 0) {