Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet since if_mtu is u_long, use u_long for mtu.
details: https://anonhg.NetBSD.org/src/rev/48dab937b1f0
branches: trunk
changeset: 532069:48dab937b1f0
user: itojun <itojun%NetBSD.org@localhost>
date: Fri May 31 05:26:42 2002 +0000
description:
since if_mtu is u_long, use u_long for mtu.
diffstat:
sys/netinet/ip_output.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 53a506c6c2f6 -r 48dab937b1f0 sys/netinet/ip_output.c
--- a/sys/netinet/ip_output.c Fri May 31 04:53:30 2002 +0000
+++ b/sys/netinet/ip_output.c Fri May 31 05:26:42 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ip_output.c,v 1.95 2002/02/07 21:47:45 thorpej Exp $ */
+/* $NetBSD: ip_output.c,v 1.96 2002/05/31 05:26:42 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -102,7 +102,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip_output.c,v 1.95 2002/02/07 21:47:45 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip_output.c,v 1.96 2002/05/31 05:26:42 itojun Exp $");
#include "opt_pfil_hooks.h"
#include "opt_ipsec.h"
@@ -177,7 +177,7 @@
struct route *ro;
int flags, sw_csum;
int *mtu_p;
- int mtu;
+ u_long mtu;
struct ip_moptions *imo;
va_list ap;
#ifdef IPSEC
Home |
Main Index |
Thread Index |
Old Index