mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Expand CDR uniqueid field to 150 chars, to account for maximum systemname.
(Closes issue #12831) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@121855 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -90,8 +90,9 @@ struct ast_cdr {
|
||||
char accountcode[AST_MAX_ACCOUNT_CODE];
|
||||
/*! flags */
|
||||
unsigned int flags;
|
||||
/*! Unique Channel Identifier */
|
||||
char uniqueid[32];
|
||||
/*! Unique Channel Identifier
|
||||
* 150 = 127 (max systemname) + "-" + 10 (epoch timestamp) + "." + 10 (monotonically incrementing integer) + NULL */
|
||||
char uniqueid[150];
|
||||
/*! User field */
|
||||
char userfield[AST_MAX_USER_FIELD];
|
||||
|
||||
|
Reference in New Issue
Block a user