Merged revisions 49006 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r49006 | kpfleming | 2006-12-27 16:06:56 -0600 (Wed, 27 Dec 2006) | 2 lines

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/trunk@49008 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-12-27 22:14:33 +00:00
parent d7b0ec8646
commit adca0ff14b
13 changed files with 48 additions and 48 deletions

View File

@@ -106,12 +106,12 @@ struct eventqent {
static AST_LIST_HEAD_STATIC(all_events, eventqent);
static int displayconnects = 1;
static int timestampevents = 0;
static int timestampevents;
static int httptimeout = 60;
static pthread_t accept_thread_ptr; /*!< the accept thread */
static int block_sockets = 0;
static int num_sessions = 0;
static int block_sockets;
static int num_sessions;
static int manager_debug; /*!< enable some debugging code in the manager */
@@ -173,7 +173,7 @@ struct ast_manager_user {
static AST_LIST_HEAD_STATIC(users, ast_manager_user);
/*! \brief list of actions registered */
static struct manager_action *first_action = NULL;
static struct manager_action *first_action;
AST_MUTEX_DEFINE_STATIC(actionlock);
static AST_RWLIST_HEAD_STATIC(manager_hooks, manager_custom_hook);