[asterisk-commits] moy: branch moy/mfcr2 r154142 - /team/moy/mfcr2/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Nov 3 23:01:11 CST 2008
Author: moy
Date: Mon Nov 3 23:01:10 2008
New Revision: 154142
URL: http://svn.digium.com/view/asterisk?view=rev&rev=154142
Log:
changed ANI/DNIS display position when a call is offered
Modified:
team/moy/mfcr2/channels/chan_dahdi.c
Modified: team/moy/mfcr2/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/team/moy/mfcr2/channels/chan_dahdi.c?view=diff&rev=154142&r1=154141&r2=154142
==============================================================================
--- team/moy/mfcr2/channels/chan_dahdi.c (original)
+++ team/moy/mfcr2/channels/chan_dahdi.c Mon Nov 3 23:01:10 2008
@@ -1424,8 +1424,8 @@
static void dahdi_r2_on_call_offered(openr2_chan_t *r2chan, const char *ani, const char *dnis, openr2_calling_party_category_t category)
{
struct dahdi_pvt *p;
- ast_log(LOG_NOTICE, "MFC/R2 call offered on chan %d. DNIS = %s, ANI = %s, Category = %s\n",
- openr2_chan_get_number(r2chan), dnis, ani ? ani : "(restricted)",
+ ast_log(LOG_NOTICE, "MFC/R2 call offered on chan %d. ANI = %s, DNIS = %s, Category = %s\n",
+ openr2_chan_get_number(r2chan), ani ? ani : "(restricted)", dnis,
openr2_proto_get_category_string(category));
p = openr2_chan_get_client_data(r2chan);
/* if collect calls are not allowed and this is a collect call, reject it! */
More information about the asterisk-commits
mailing list