summaryrefslogtreecommitdiff
path: root/sys/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-12-14 09:55:16 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-12-14 09:55:16 +0000
commitf708ef1b9ebe2f38fc7e454e6594efd5a98a2124 (patch)
tree9887f4bf5939f3591e9b3a4f6e1865f9a1f810d8 /sys/netinet/udp_usrreq.c
parent87b6de2b76c97cb6262434dcacebf53d0c457cef (diff)
Notes
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r--sys/netinet/udp_usrreq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index b15ff86bb1d5..807a1477ad69 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
- * $Id: udp_usrreq.c,v 1.16 1995/11/16 09:51:02 bde Exp $
+ * $Id: udp_usrreq.c,v 1.17 1995/12/06 23:37:44 bde Exp $
*/
#include <sys/param.h>
@@ -72,14 +72,14 @@ static int udpcksum = 0; /* XXX */
SYSCTL_INT(_net_inet_udp, UDPCTL_CHECKSUM, checksum, CTLFLAG_RW,
&udpcksum, 0, "");
-struct inpcbhead udb; /* from udp_var.h */
-struct inpcbinfo udbinfo;
+static struct inpcbhead udb; /* from udp_var.h */
+static struct inpcbinfo udbinfo;
#ifndef UDBHASHSIZE
#define UDBHASHSIZE 64
#endif
-struct udpstat udpstat; /* from udp_var.h */
+static struct udpstat udpstat; /* from udp_var.h */
SYSCTL_STRUCT(_net_inet_udp, UDPCTL_STATS, stats, CTLFLAG_RD,
&udpstat, udpstat, "");