mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
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:
@@ -57,7 +57,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
|
||||
/*! Default AMA flag for billing records (CDR's) */
|
||||
int ast_default_amaflags = AST_CDR_DOCUMENTATION;
|
||||
char ast_default_accountcode[AST_MAX_ACCOUNT_CODE] = "";
|
||||
char ast_default_accountcode[AST_MAX_ACCOUNT_CODE];
|
||||
|
||||
struct ast_cdr_beitem {
|
||||
char name[20];
|
||||
@@ -77,7 +77,7 @@ static struct ast_cdr_batch {
|
||||
int size;
|
||||
struct ast_cdr_batch_item *head;
|
||||
struct ast_cdr_batch_item *tail;
|
||||
} *batch = NULL;
|
||||
} *batch;
|
||||
|
||||
static struct sched_context *sched;
|
||||
static int cdr_sched = -1;
|
||||
|
||||
Reference in New Issue
Block a user