diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2007-05-26 17:13:32 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2007-05-26 17:13:32 +0000 |
commit | 93767ea00dd6c4564e390e060a3e251c22b1f1a5 (patch) | |
tree | fd00948ebd5818492b0552055b50e0593d6953b2 /sys/netinet | |
parent | 1afb44c84e02ea7b687853df5e4e93093298a295 (diff) |
one extern seems to be better than 20 for ifqmaxlen; ok krw
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_carp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 0897483fbd5..9130121cdde 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.137 2007/05/06 12:20:04 henning Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.138 2007/05/26 17:13:31 jason Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -820,7 +820,6 @@ carp_clone_create(ifc, unit) struct if_clone *ifc; int unit; { - extern int ifqmaxlen; struct carp_softc *sc; struct ifnet *ifp; |