summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2014-04-18 22:23:50 +0000
committerclaudio <claudio@openbsd.org>2014-04-18 22:23:50 +0000
commitfebf97c1412c96b666feba8b0f2a0134f523835a (patch)
treec1a1af08b7f8ad32276112f409efce37e4a25d9a
parentflesh out STANDARDS; (diff)
downloadwireguard-openbsd-febf97c1412c96b666feba8b0f2a0134f523835a.tar.xz
wireguard-openbsd-febf97c1412c96b666feba8b0f2a0134f523835a.zip
There is no need to initialize globals to 0.
-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 9fc28deeeb6..06e8e6d7c06 100644
--- a/sys/net/pipex.c
+++ b/sys/net/pipex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pipex.c,v 1.48 2013/11/11 09:15:34 mpi Exp $ */
+/* $OpenBSD: pipex.c,v 1.49 2014/04/18 22:23:50 claudio Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
@@ -95,8 +95,8 @@ struct pipex_hash_head
struct radix_node_head pipex_rd_head4;
struct radix_node_head pipex_rd_head6;
-int pipex_rd_head4_initialized = 0;
-int pipex_rd_head6_initialized = 0;
+int pipex_rd_head4_initialized;
+int pipex_rd_head6_initialized;
struct timeout pipex_timer_ch; /* callout timer context */
int pipex_prune = 1; /* walk list every seconds */