mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 16:21:01 +00:00
Use the DEFINED value for musicclass length.
For some reason, features.c has it's own definition. Should propably be fixed too. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@363595 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -130,7 +130,7 @@ struct number {
|
||||
struct call_followme {
|
||||
ast_mutex_t lock;
|
||||
char name[AST_MAX_EXTENSION]; /*!< Name - FollowMeID */
|
||||
char moh[AST_MAX_CONTEXT]; /*!< Music On Hold Class to be used */
|
||||
char moh[MAX_MUSICCLASS]; /*!< Music On Hold Class to be used */
|
||||
char context[AST_MAX_CONTEXT]; /*!< Context to dial from */
|
||||
unsigned int active; /*!< Profile is active (1), or disabled (0). */
|
||||
int realtime; /*!< Cached from realtime */
|
||||
|
@@ -1096,7 +1096,7 @@ struct callattempt {
|
||||
|
||||
struct queue_ent {
|
||||
struct call_queue *parent; /*!< What queue is our parent */
|
||||
char moh[80]; /*!< Name of musiconhold to be used */
|
||||
char moh[MAX_MUSICCLASS]; /*!< Name of musiconhold to be used */
|
||||
char announce[PATH_MAX]; /*!< Announcement to play for member when call is answered */
|
||||
char context[AST_MAX_CONTEXT]; /*!< Context when user exits queue */
|
||||
char digits[AST_MAX_EXTENSION]; /*!< Digits entered while in queue */
|
||||
|
Reference in New Issue
Block a user