summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-18 22:04:07 +0000
committerMark Spencer <markster@digium.com>2004-12-18 22:04:07 +0000
commitb3a0ef24ed5cd824de6e6e4ff3910befc3aa444c (patch)
tree0e2bf6344b172b40a0e38e1ea56edd9101d1649d /pbx.c
parent750c73a62fc2830db9c47c1b6373054557a721c8 (diff)
Fix comment issues (bug #3089)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4479 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/pbx.c b/pbx.c
index 44a57d3a1..09a87d2d0 100755
--- a/pbx.c
+++ b/pbx.c
@@ -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];
};