diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-26 20:50:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-26 20:50:42 +0000 |
commit | 6babe9805998e05466af389e63ef989373502792 (patch) | |
tree | e8ec3db39263318b0fce465af9c6020cf539dfad /sys/dev/ic | |
parent | 7e3471596909992be5f7747e1b0f148ad84a1cb6 (diff) |
rename jumbo mtu to if_hardmtu; ok brad reyk
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/re.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c index 843a7b542c7..49fd8ae857a 100644 --- a/sys/dev/ic/re.c +++ b/sys/dev/ic/re.c @@ -1,4 +1,4 @@ -/* $OpenBSD: re.c,v 1.21 2006/05/20 03:47:56 brad Exp $ */ +/* $OpenBSD: re.c,v 1.22 2006/05/26 20:50:41 deraadt Exp $ */ /* $FreeBSD: if_re.c,v 1.31 2004/09/04 07:54:05 ru Exp $ */ /* * Copyright (c) 1997, 1998-2003 @@ -877,7 +877,7 @@ re_attach_common(struct rl_softc *sc) ifp->if_init = re_init; if (sc->rl_type == RL_8169) { ifp->if_baudrate = 1000000000; - ifp->if_jumbo_mtu = RL_JUMBO_MTU; + ifp->if_hardmtu = RL_JUMBO_MTU; ifp->if_capabilities |= IFCAP_JUMBO_MTU; } else ifp->if_baudrate = 100000000; |