aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/chan_h323.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/h323/chan_h323.c')
-rwxr-xr-xchannels/h323/chan_h323.c18
1 files changed, 4 insertions, 14 deletions
diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c
index 8804ac51d..017a16436 100755
--- a/channels/h323/chan_h323.c
+++ b/channels/h323/chan_h323.c
@@ -963,11 +963,7 @@ int setup_incoming_call(call_details_t cd)
strncpy(p->context, alias->context, sizeof(p->context)-1);
}
- 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);
-
+ sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
} else {
/* Either this call is not from the Gatekeeper
@@ -976,10 +972,7 @@ int setup_incoming_call(call_details_t cd)
user = find_user(cd.call_source_aliases);
if (!user) {
- 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);
+ 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 {
@@ -1016,11 +1009,8 @@ int setup_incoming_call(call_details_t cd)
if (strlen(user->callerid))
strncpy(p->callerid, user->callerid, sizeof(p->callerid) - 1);
else
- 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);
-
+ 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 {