summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-12-23 02:42:52 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-12-23 02:42:52 +0000
commitfaa1ea8c20f6f234e14b192705ddaeb1bc67f7de (patch)
tree78abb94ad26481b1a1b1ac5e1ffcb7ba3d297fdb
parenta743398d04d2bb40b95b8d508152fb15601e2329 (diff)
- markus@cvs.openbsd.org 2002/12/10 19:47:14
[packet.c] static
-rw-r--r--ChangeLog5
-rw-r--r--packet.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a8fc00bf..c75b2890e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -62,6 +62,9 @@
62 - markus@cvs.openbsd.org 2002/12/10 19:26:50 62 - markus@cvs.openbsd.org 2002/12/10 19:26:50
63 [packet.c] 63 [packet.c]
64 move tos handling to packet_set_tos; ok provos/henning/deraadt 64 move tos handling to packet_set_tos; ok provos/henning/deraadt
65 - markus@cvs.openbsd.org 2002/12/10 19:47:14
66 [packet.c]
67 static
65 68
6620021205 6920021205
67 - (djm) PERL-free fixpaths from stuge-openssh-unix-dev@cdy.org 70 - (djm) PERL-free fixpaths from stuge-openssh-unix-dev@cdy.org
@@ -897,4 +900,4 @@
897 save auth method before monitor_reset_key_state(); bugzilla bug #284; 900 save auth method before monitor_reset_key_state(); bugzilla bug #284;
898 ok provos@ 901 ok provos@
899 902
900$Id: ChangeLog,v 1.2532 2002/12/23 02:41:41 mouring Exp $ 903$Id: ChangeLog,v 1.2533 2002/12/23 02:42:52 mouring Exp $
diff --git a/packet.c b/packet.c
index d06ac904a..3e2d1249d 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.101 2002/12/10 19:26:50 markus Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.102 2002/12/10 19:47:14 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -1314,7 +1314,7 @@ packet_not_very_much_data_to_write(void)
1314 return buffer_len(&output) < 128 * 1024; 1314 return buffer_len(&output) < 128 * 1024;
1315} 1315}
1316 1316
1317void 1317static void
1318packet_set_tos(int interactive) 1318packet_set_tos(int interactive)
1319{ 1319{
1320 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT; 1320 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;