=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/packet.h,v retrieving revision 1.35.4.2 retrieving revision 1.36 diff -u -r1.35.4.2 -r1.36 --- src/usr.bin/ssh/packet.h 2004/03/04 18:18:16 1.35.4.2 +++ src/usr.bin/ssh/packet.h 2003/04/01 10:10:23 1.36 @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.35.4.2 2004/03/04 18:18:16 brad Exp $ */ +/* $OpenBSD: packet.h,v 1.36 2003/04/01 10:10:23 markus Exp $ */ /* * Author: Tatu Ylonen @@ -81,8 +81,8 @@ void tty_make_modes(int, struct termios *); void tty_parse_modes(int, int *); -extern u_int max_packet_size; -u_int packet_set_maxsize(u_int); +extern int max_packet_size; +int packet_set_maxsize(int); #define packet_get_maxsize() max_packet_size /* don't allow remaining bytes after the end of the message */ @@ -90,7 +90,7 @@ do { \ int _len = packet_remaining(); \ if (_len > 0) { \ - logit("Packet integrity error (%d bytes remaining) at %s:%d", \ + log("Packet integrity error (%d bytes remaining) at %s:%d", \ _len ,__FILE__, __LINE__); \ packet_disconnect("Packet integrity error."); \ } \