aboutsummaryrefslogtreecommitdiffstats
path: root/main/dnsmgr.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-27 22:06:56 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-27 22:06:56 +0000
commitbec31308c06801ff6170b9bdbed27cb7c3dcfb9c (patch)
tree3630ee5a0a14ae6ee9a94c42beda6054b5bb0e65 /main/dnsmgr.c
parentb92384e18833f481cdf28dea1988346ff83a841b (diff)
since these variables all have static duration, none of them need initializers (they default to zero anyway)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@49006 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/dnsmgr.c')
-rw-r--r--main/dnsmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/dnsmgr.c b/main/dnsmgr.c
index e7ce3190d..59c3a9994 100644
--- a/main/dnsmgr.c
+++ b/main/dnsmgr.c
@@ -71,7 +71,7 @@ AST_MUTEX_DEFINE_STATIC(refresh_lock);
#define REFRESH_DEFAULT 300
-static int enabled = 0;
+static int enabled;
static int refresh_interval;
struct refresh_info {