[buffer.c]
     sign fix in buffer_dump; Jedi/Sector One; pr 3473
This commit is contained in:
Darren Tucker 2003-09-22 21:08:21 +10:00
parent a8151da5fe
commit 631a4a9b3e
2 changed files with 6 additions and 3 deletions

View File

@ -49,6 +49,9 @@
- markus@cvs.openbsd.org 2003/09/19 09:02:02 - markus@cvs.openbsd.org 2003/09/19 09:02:02
[packet.c] [packet.c]
buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471 buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471
- markus@cvs.openbsd.org 2003/09/19 09:03:00
[buffer.c]
sign fix in buffer_dump; Jedi/Sector One; pr 3473
20030919 20030919
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@ -1185,4 +1188,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3029 2003/09/22 11:06:46 dtucker Exp $ $Id: ChangeLog,v 1.3030 2003/09/22 11:08:21 dtucker Exp $

View File

@ -12,7 +12,7 @@
*/ */
#include "includes.h" #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 "xmalloc.h"
#include "buffer.h" #include "buffer.h"
@ -169,7 +169,7 @@ buffer_ptr(Buffer *buffer)
void void
buffer_dump(Buffer *buffer) buffer_dump(Buffer *buffer)
{ {
int i; u_int i;
u_char *ucp = buffer->buf; u_char *ucp = buffer->buf;
for (i = buffer->offset; i < buffer->end; i++) { for (i = buffer->offset; i < buffer->end; i++) {