mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 00:24:05 +00:00
More 'static' qualifiers on module global variables.
The 'pglobal' tool is quite handy indeed :-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200620 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -93,8 +93,8 @@ static int matchmore(struct ast_channel *chan, const char *context, const char *
|
||||
static int exec(struct ast_channel *chan, const char *context, const char *exten, int priority, const char *callerid, const char *data);
|
||||
|
||||
AST_MUTEX_DEFINE_STATIC(config_file_lock);
|
||||
char *config_file_data = NULL;
|
||||
long config_file_size = 0;
|
||||
static char *config_file_data = NULL;
|
||||
static long config_file_size = 0;
|
||||
|
||||
static struct ast_context *local_contexts = NULL;
|
||||
static struct ast_hashtab *local_table = NULL;
|
||||
|
Reference in New Issue
Block a user