mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user