Fix comment issues (bug #3089)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4479 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-12-18 22:04:07 +00:00
parent 750c73a62f
commit b3a0ef24ed
11 changed files with 154 additions and 142 deletions

24
pbx.c
View File

@@ -64,18 +64,18 @@ struct ast_context;
/* ast_exten: An extension */
struct ast_exten {
char *exten; /* Extension name */
int matchcid; /* Match caller id ? */
char *cidmatch; /* Caller id to match for this extension */
int priority; /* Priority */
char *label; /* Label */
struct ast_context *parent; /* An extension */
char *app; /* Application to execute */
void *data; /* Data to use */
void (*datad)(void *); /* Data destructor */
struct ast_exten *peer; /* Next higher priority with our extension */
const char *registrar; /* Registrar */
struct ast_exten *next; /* Extension with a greater ID */
char *exten; /* Extension name */
int matchcid; /* Match caller id ? */
char *cidmatch; /* Caller id to match for this extension */
int priority; /* Priority */
char *label; /* Label */
struct ast_context *parent; /* The context this extension belongs to */
char *app; /* Application to execute */
void *data; /* Data to use (arguments) */
void (*datad)(void *); /* Data destructor */
struct ast_exten *peer; /* Next higher priority with our extension */
const char *registrar; /* Registrar */
struct ast_exten *next; /* Extension with a greater ID */
char stuff[0];
};