don't let caller profiles init with blank caller id

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9064 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-07-16 22:02:41 +00:00
parent df5afbcacd
commit 61f3d6798b
1 changed files with 8 additions and 0 deletions

View File

@ -56,6 +56,14 @@ SWITCH_DECLARE(switch_caller_profile_t *) switch_caller_profile_new(switch_memor
context = "default";
}
if (switch_strlen_zero(caller_id_name)) {
caller_id_name = "FreeSWITCH";
}
if (switch_strlen_zero(caller_id_number)) {
caller_id_number = "0000000000";
}
profile_dup_clean(username, profile->username, pool);
profile_dup_clean(dialplan, profile->dialplan, pool);
profile_dup_clean(caller_id_name, profile->caller_id_name, pool);