summaryrefslogtreecommitdiff
path: root/sys/net/pipex.c
diff options
context:
space:
mode:
authorRyan Thomas McBride <mcbride@cvs.openbsd.org>2011-07-07 22:32:52 +0000
committerRyan Thomas McBride <mcbride@cvs.openbsd.org>2011-07-07 22:32:52 +0000
commite4db0dcea50d2113a36eaf59148e17426706f039 (patch)
tree8fe14dec451f472b20dfd80857e9f9105e81b6b1 /sys/net/pipex.c
parentbfe036ab828b6511cb7b5c962a0eae874af4e991 (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.c6
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;