aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-18 22:04:07 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-18 22:04:07 +0000
commit253322596d3e9cb116d4957c5500dd6143235d6e (patch)
tree0e2bf6344b172b40a0e38e1ea56edd9101d1649d /pbx.c
parent0962821aa7ccaaa8b9b500a152ec8d0ea0b8ef65 (diff)
Fix comment issues (bug #3089)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4479 f38db490-d61c-443f-a65b-d21fe96a405b
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];
};