diff options
author | 2003-09-19 09:03:00 +0000 | |
---|---|---|
committer | 2003-09-19 09:03:00 +0000 | |
commit | 450f8adcd20006bcf5058eec013d458a863ca752 (patch) | |
tree | a58dd7805eaf6a7c64cf622ea330c9384403e63f /usr.bin/ssh/buffer.c | |
parent | buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471 (diff) | |
download | wireguard-openbsd-450f8adcd20006bcf5058eec013d458a863ca752.tar.xz wireguard-openbsd-450f8adcd20006bcf5058eec013d458a863ca752.zip |
sign fix in buffer_dump; Jedi/Sector One; pr 3473
Diffstat (limited to 'usr.bin/ssh/buffer.c')
-rw-r--r-- | usr.bin/ssh/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/buffer.c b/usr.bin/ssh/buffer.c index a80880bb923..69d5b57c00d 100644 --- a/usr.bin/ssh/buffer.c +++ b/usr.bin/ssh/buffer.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: buffer.c,v 1.19 2003/09/18 07:54:48 markus Exp $"); +RCSID("$OpenBSD: buffer.c,v 1.20 2003/09/19 09:03:00 markus Exp $"); #include "xmalloc.h" #include "buffer.h" @@ -169,7 +169,7 @@ buffer_ptr(Buffer *buffer) void buffer_dump(Buffer *buffer) { - int i; + u_int i; u_char *ucp = buffer->buf; for (i = buffer->offset; i < buffer->end; i++) { |