diff options
author | Andreas Gunnarsson <andreas@cvs.openbsd.org> | 2009-06-13 11:55:40 +0000 |
---|---|---|
committer | Andreas Gunnarsson <andreas@cvs.openbsd.org> | 2009-06-13 11:55:40 +0000 |
commit | 7a6af1987b328dc4a059eba49d191c3b4e8580ad (patch) | |
tree | 15afe6978e685ac5527a88702332c0b85da91aa5 | |
parent | 269143e168709eeb3d63a05f9a5549c6893fc636 (diff) |
Use debug3() instead of debug(), requested by markus@
ok dtucker@
-rw-r--r-- | usr.bin/ssh/roaming_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/roaming_common.c b/usr.bin/ssh/roaming_common.c index 3df55df15e8..4bc848fb233 100644 --- a/usr.bin/ssh/roaming_common.c +++ b/usr.bin/ssh/roaming_common.c @@ -70,7 +70,8 @@ roaming_write(int fd, const void *buf, size_t count, int *cont) if (ret > 0 && !resume_in_progress) { write_bytes += ret; } - debug("Wrote %ld bytes for a total of %lld", (long)ret, write_bytes); + debug3("Wrote %ld bytes for a total of %llu", (long)ret, + (unsigned long long)write_bytes); return ret; } |