diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-07 22:32:52 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-07 22:32:52 +0000 |
commit | e4db0dcea50d2113a36eaf59148e17426706f039 (patch) | |
tree | 8fe14dec451f472b20dfd80857e9f9105e81b6b1 /sys/net/pipex.c | |
parent | bfe036ab828b6511cb7b5c962a0eae874af4e991 (diff) |
We should not have any direct initialization of ifq structures.
(in this case it's unnecessary, bss is initialized to zero at boot)
ok henning
Diffstat (limited to 'sys/net/pipex.c')
-rw-r--r-- | sys/net/pipex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pipex.c b/sys/net/pipex.c index e0fbfbff24e..6ee41c1e46c 100644 --- a/sys/net/pipex.c +++ b/sys/net/pipex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.c,v 1.17 2011/04/05 18:01:21 henning Exp $ */ +/* $OpenBSD: pipex.c,v 1.18 2011/07/07 22:32:51 mcbride Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -98,8 +98,8 @@ struct timeout pipex_timer_ch; /* callout timer context */ int pipex_prune = 1; /* walk list every seconds */ /* pipex traffic queue */ -struct ifqueue pipexinq = { NULL }; -struct ifqueue pipexoutq = { NULL }; +struct ifqueue pipexinq; +struct ifqueue pipexoutq; struct pipex_tag { struct pipex_session *session; int proto; |