aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-21 21:46:58 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-21 21:46:58 +0000
commite537f297313b14adecc2e4a57629501c9564f21a (patch)
treeb204cf6be8bef13b1b2ef89165ef36a532e2fe68 /channel.c
parent7775cb70707ccd65f269a8dde0e4ceaaab014603 (diff)
Make event parameter names consistent for callerid (bug #3116)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4518 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/channel.c b/channel.c
index c26774f8d..d572035a9 100755
--- a/channel.c
+++ b/channel.c
@@ -1907,8 +1907,8 @@ struct ast_channel *ast_request(const char *type, int format, void *data, int *c
manager_event(EVENT_FLAG_CALL, "Newchannel",
"Channel: %s\r\n"
"State: %s\r\n"
- "Callerid: %s\r\n"
- "CalleridName: %s\r\n"
+ "CallerID: %s\r\n"
+ "CallerIDName: %s\r\n"
"Uniqueid: %s\r\n",
c->name, ast_state2str(c->_state), c->cid.cid_num ? c->cid.cid_num : "<unknown>", c->cid.cid_name ? c->cid.cid_name : "<unknown>",c->uniqueid);
}
@@ -2447,8 +2447,8 @@ void ast_set_callerid(struct ast_channel *chan, const char *callerid, const char
ast_cdr_setcid(chan->cdr, chan);
manager_event(EVENT_FLAG_CALL, "Newcallerid",
"Channel: %s\r\n"
- "Callerid: %s\r\n"
- "CalleridName: %s\r\n"
+ "CallerID: %s\r\n"
+ "CallerIDName: %s\r\n"
"Uniqueid: %s\r\n",
chan->name, chan->cid.cid_num ?
chan->cid.cid_num : "<Unknown>",
@@ -2467,8 +2467,8 @@ int ast_setstate(struct ast_channel *chan, int state)
manager_event(EVENT_FLAG_CALL, "Newchannel",
"Channel: %s\r\n"
"State: %s\r\n"
- "Callerid: %s\r\n"
- "CalleridName: %s\r\n"
+ "CallerID: %s\r\n"
+ "CallerIDName: %s\r\n"
"Uniqueid: %s\r\n",
chan->name, ast_state2str(chan->_state),
chan->cid.cid_num ? chan->cid.cid_num : "<unknown>",
@@ -2478,8 +2478,8 @@ int ast_setstate(struct ast_channel *chan, int state)
manager_event(EVENT_FLAG_CALL, "Newstate",
"Channel: %s\r\n"
"State: %s\r\n"
- "Callerid: %s\r\n"
- "CalleridName: %s\r\n"
+ "CallerID: %s\r\n"
+ "CallerIDName: %s\r\n"
"Uniqueid: %s\r\n",
chan->name, ast_state2str(chan->_state),
chan->cid.cid_num ? chan->cid.cid_num : "<unknown>",