since these variables all have static duration, none of them need initializers (they default to zero anyway)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@49006 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-12-27 22:06:56 +00:00
parent 3307ae060a
commit a299485952
14 changed files with 49 additions and 49 deletions

View File

@@ -65,14 +65,14 @@ struct ast_http_server_instance {
};
AST_MUTEX_DEFINE_STATIC(uris_lock);
static struct ast_http_uri *uris = NULL;
static struct ast_http_uri *uris;
static int httpfd = -1;
static pthread_t master = AST_PTHREADT_NULL;
static char prefix[MAX_PREFIX];
static int prefix_len = 0;
static int prefix_len;
static struct sockaddr_in oldsin;
static int enablestatic=0;
static int enablestatic;
/*! \brief Limit the kinds of files we're willing to serve up */
static struct {