- markus@cvs.openbsd.org 2001/09/27 11:59:37
[packet.c] missing called=1; chombier@mac.com
This commit is contained in:
parent
96f8d143a7
commit
ae3de4b39e
12
ChangeLog
12
ChangeLog
|
@ -1,8 +1,12 @@
|
|||
20011003
|
||||
- (bal) CVS ID fix up in version.h
|
||||
- markus@cvs.openbsd.org 2001/09/27 11:58:16
|
||||
[compress.c]
|
||||
mem leak; chombier@mac.com
|
||||
- (bal) OpenBSD CVS Sync:
|
||||
- markus@cvs.openbsd.org 2001/09/27 11:58:16
|
||||
[compress.c]
|
||||
mem leak; chombier@mac.com
|
||||
- markus@cvs.openbsd.org 2001/09/27 11:59:37
|
||||
[packet.c]
|
||||
missing called=1; chombier@mac.com
|
||||
|
||||
20011001
|
||||
- (stevesk) loginrec.c: fix type conversion problems exposed when using
|
||||
|
@ -6595,4 +6599,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1570 2001/10/03 17:07:47 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1571 2001/10/03 17:10:17 mouring Exp $
|
||||
|
|
3
packet.c
3
packet.c
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: packet.c,v 1.69 2001/06/25 08:25:38 markus Exp $");
|
||||
RCSID("$OpenBSD: packet.c,v 1.70 2001/09/27 11:59:37 markus Exp $");
|
||||
|
||||
#include "xmalloc.h"
|
||||
#include "buffer.h"
|
||||
|
@ -1232,6 +1232,7 @@ packet_set_maxsize(int s)
|
|||
log("packet_set_maxsize: bad size %d", s);
|
||||
return -1;
|
||||
}
|
||||
called = 1;
|
||||
debug("packet_set_maxsize: setting to %d", s);
|
||||
max_packet_size = s;
|
||||
return s;
|
||||
|
|
Loading…
Reference in New Issue