mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2003/09/19 09:03:00
[buffer.c] sign fix in buffer_dump; Jedi/Sector One; pr 3473
This commit is contained in:
parent
a8151da5fe
commit
631a4a9b3e
|
@ -49,6 +49,9 @@
|
|||
- markus@cvs.openbsd.org 2003/09/19 09:02:02
|
||||
[packet.c]
|
||||
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
|
||||
- (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.
|
||||
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 $
|
||||
|
|
4
buffer.c
4
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++) {
|
||||
|
|
Loading…
Reference in New Issue