summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--packet.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c1111eb48..9dfcadf6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,7 +17,9 @@
17 - (djm) Fix PAM fix 17 - (djm) Fix PAM fix
18 - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This 18 - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
19 change is being made as 2.5.x configfiles are not back-compatible with 19 change is being made as 2.5.x configfiles are not back-compatible with
20 2.3.x. 20 2.3.x.
21 - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
22 <markm@swoon.net>
21 23
2220010226 2420010226
23 - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again. 25 - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
@@ -4152,4 +4154,4 @@
4152 - Wrote replacements for strlcpy and mkdtemp 4154 - Wrote replacements for strlcpy and mkdtemp
4153 - Released 1.0pre1 4155 - Released 1.0pre1
4154 4156
4155$Id: ChangeLog,v 1.834 2001/02/26 23:53:00 djm Exp $ 4157$Id: ChangeLog,v 1.835 2001/02/27 03:03:37 djm Exp $
diff --git a/packet.c b/packet.c
index fb4314553..5213e43e8 100644
--- a/packet.c
+++ b/packet.c
@@ -1232,8 +1232,10 @@ void
1232packet_set_interactive(int interactive) 1232packet_set_interactive(int interactive)
1233{ 1233{
1234 static int called = 0; 1234 static int called = 0;
1235#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
1235 int lowdelay = IPTOS_LOWDELAY; 1236 int lowdelay = IPTOS_LOWDELAY;
1236 int throughput = IPTOS_THROUGHPUT; 1237 int throughput = IPTOS_THROUGHPUT;
1238#endif
1237 int on = 1; 1239 int on = 1;
1238 1240
1239 if (called) 1241 if (called)