aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2002-01-08 10:30:34 +0000
committerMike Smith <msmith@FreeBSD.org>2002-01-08 10:30:34 +0000
commitb78929a257e53ba143a3a1b9d21bab9fa03ab2ae (patch)
tree6c9deb6a164b563e094b93614828c6f5b44b2e75 /sys/netgraph
parente8783c4d6b3193a3a1bce7d2af8d2164e002b5f1 (diff)
Notes
Diffstat (limited to 'sys/netgraph')
-rw-r--r--sys/netgraph/ng_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_socket.c b/sys/netgraph/ng_socket.c
index f570355683e31..f34fa7f072704 100644
--- a/sys/netgraph/ng_socket.c
+++ b/sys/netgraph/ng_socket.c
@@ -148,7 +148,7 @@ static u_long ngpdg_sendspace = 20 * 1024; /* really max datagram size */
static u_long ngpdg_recvspace = 20 * 1024;
/* List of all sockets */
-LIST_HEAD(, ngpcb) ngsocklist;
+static LIST_HEAD(, ngpcb) ngsocklist;
#define sotongpcb(so) ((struct ngpcb *)(so)->so_pcb)