From 4aacf51f4d42416f059434fade6bf3975fde947b Mon Sep 17 00:00:00 2001 From: Jeremy McNamara Date: Thu, 24 Jul 2003 17:13:13 +0000 Subject: deal with no callerid name in all cases. really need to rethink this function git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1210 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/h323/chan_h323.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'channels/h323') diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c index de18ea6f2..8804ac51d 100755 --- a/channels/h323/chan_h323.c +++ b/channels/h323/chan_h323.c @@ -963,7 +963,11 @@ int setup_incoming_call(call_details_t cd) strncpy(p->context, alias->context, sizeof(p->context)-1); } - sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164); + if (!strlen(p->cd.call_source_aliases)) + sprintf(p->callerid, "Unknown Name <%s>", p->cd.call_source_e164); + else + sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164); + } else { /* Either this call is not from the Gatekeeper @@ -972,7 +976,10 @@ int setup_incoming_call(call_details_t cd) user = find_user(cd.call_source_aliases); if (!user) { - sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164); + if (!strlen(p->cd.call_source_aliases)) + sprintf(p->callerid, "Unknown Name <%s>", p->cd.call_source_e164); + else + sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164); if (strlen(p->cd.call_dest_e164)) { strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1); } else { -- cgit v1.2.3