[svn-commits] oej: trunk r65844 - in /trunk: ./
channels/chan_gtalk.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 24 07:52:02 MST 2007
Author: oej
Date: Thu May 24 09:52:01 2007
New Revision: 65844
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65844
Log:
Merged revisions 65841 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r65841 | oej | 2007-05-24 16:48:55 +0200 (Thu, 24 May 2007) | 2 lines
Issue #8536 - Caller ID not set in CDR for jingle
........
Modified:
trunk/ (props changed)
trunk/channels/chan_gtalk.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_gtalk.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_gtalk.c?view=diff&rev=65844&r1=65843&r2=65844
==============================================================================
--- trunk/channels/chan_gtalk.c (original)
+++ trunk/channels/chan_gtalk.c Thu May 24 09:52:01 2007
@@ -899,6 +899,7 @@
int fmt;
int what;
const char *n2;
+ char *data = NULL, *cid = NULL;
if (title)
n2 = title;
@@ -964,9 +965,21 @@
ast_copy_string(tmp->exten, i->exten, sizeof(tmp->exten));
/* Don't use ast_set_callerid() here because it will
* generate a needless NewCallerID event */
- tmp->cid.cid_num = ast_strdup(i->cid_num);
- tmp->cid.cid_ani = ast_strdup(i->cid_num);
- tmp->cid.cid_name = ast_strdup(i->cid_name);
+ if (!strcasecmp(client->name, "guest")) {
+ if (strchr(i->them, '/')) {
+ char *aux;
+ data = ast_strdupa((char *)i->them);
+ aux = data;
+ cid = strsep(&aux, "/");
+ } else
+ cid = i->them;
+ } else {
+ cid = client->user;
+ }
+ cid = strsep(&cid, "@");
+ tmp->cid.cid_num = ast_strdup(cid);
+ tmp->cid.cid_ani = ast_strdup(cid);
+ tmp->cid.cid_name = ast_strdup(i->them);
if (!ast_strlen_zero(i->exten) && strcmp(i->exten, "s"))
tmp->cid.cid_dnid = ast_strdup(i->exten);
tmp->priority = 1;
More information about the svn-commits
mailing list