summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-13 04:39:18 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-13 04:39:18 +0000
commit16d45b3952e051a864d05faa343a4ec88ca0bcfa (patch)
tree26ada64f44b00230e3cba7080444e27a4f807394 /packet.c
parent49c126044dcaa4b38dc7553f670f20b084afa6a4 (diff)
- markus@cvs.openbsd.org 2001/06/12 16:11:26
[packet.c] do not log() packet_set_maxsize
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet.c b/packet.c
index d3a43609b..e24b2e87e 100644
--- a/packet.c
+++ b/packet.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: packet.c,v 1.65 2001/06/07 20:23:04 markus Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.66 2001/06/12 16:11:26 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -1232,7 +1232,7 @@ packet_set_maxsize(int s)
1232 log("packet_set_maxsize: bad size %d", s); 1232 log("packet_set_maxsize: bad size %d", s);
1233 return -1; 1233 return -1;
1234 } 1234 }
1235 log("packet_set_maxsize: setting to %d", s); 1235 debug("packet_set_maxsize: setting to %d", s);
1236 max_packet_size = s; 1236 max_packet_size = s;
1237 return s; 1237 return s;
1238} 1238}