Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-2-0]: src/sys/netinet Pull up revision 1.8 (requested by christos...
details: https://anonhg.NetBSD.org/src/rev/fa132b92c0f4
branches: netbsd-2-0
changeset: 561202:fa132b92c0f4
user: tron <tron%NetBSD.org@localhost>
date: Sun May 30 11:23:02 2004 +0000
description:
Pull up revision 1.8 (requested by christos in ticket #416):
Make it comiple without warning; void function fr_checkv4sum() and
fr_checkv6sum() should not return value.
diffstat:
sys/netinet/ip_fil_netbsd.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 0b03c787c8a6 -r fa132b92c0f4 sys/netinet/ip_fil_netbsd.c
--- a/sys/netinet/ip_fil_netbsd.c Sun May 30 11:22:47 2004 +0000
+++ b/sys/netinet/ip_fil_netbsd.c Sun May 30 11:23:02 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ip_fil_netbsd.c,v 1.3.2.3 2004/05/30 11:22:47 tron Exp $ */
+/* $NetBSD: ip_fil_netbsd.c,v 1.3.2.4 2004/05/30 11:23:02 tron Exp $ */
/*
* Copyright (C) 1993-2003 by Darren Reed.
@@ -1462,7 +1462,7 @@
mb_t *m;
if ((fin->fin_flx & FI_NOCKSUM) != 0)
- return 0;
+ return;
manual = 0;
m = fin->fin_m;
@@ -1527,7 +1527,7 @@
mb_t *m;
if ((fin->fin_flx & FI_NOCKSUM) != 0)
- return 0;
+ return;
manual = 0;
m = fin->fin_m;
Home |
Main Index |
Thread Index |
Old Index