]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
more tweaks
authorBrian West <brian@freeswitch.org>
Fri, 10 Oct 2008 02:45:27 +0000 (02:45 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 10 Oct 2008 02:45:27 +0000 (02:45 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9928 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_alsa/mod_alsa.c
src/mod/endpoints/mod_portaudio/mod_portaudio.c
src/mod/endpoints/mod_woomera/mod_woomera.c

index 79b247ddb4f0272247a2fa0864fb307e4aab65a0..f7d25c8f9cee251fce5e6d1e57bfba04db1507d8 100644 (file)
@@ -779,7 +779,7 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi
                if (outbound_profile) {
                        char name[128];
                        const char *id = !switch_strlen_zero(outbound_profile->caller_id_number) ? outbound_profile->caller_id_number : "na";
-                       snprintf(name, sizeof(name), "Alsa/%s", id);
+                       snprintf(name, sizeof(name), "alsa/%s", id);
 
                        switch_channel_set_name(channel, name);
 
@@ -1461,7 +1461,7 @@ static switch_status_t place_call(char **argv, int argc, switch_stream_handle_t
                                                                                                                                  NULL,
                                                                                                                                  dialplan, cid_name, cid_num, ip, NULL, NULL, NULL, (char *) modname, NULL, dest)) != 0) {
                        char name[128];
-                       snprintf(name, sizeof(name), "Alsa/%s", tech_pvt->caller_profile->destination_number ? tech_pvt->caller_profile->destination_number : modname);
+                       snprintf(name, sizeof(name), "alsa/%s", tech_pvt->caller_profile->destination_number ? tech_pvt->caller_profile->destination_number : modname);
                        switch_channel_set_name(channel, name);
 
                        switch_channel_set_caller_profile(channel, tech_pvt->caller_profile);
index 15bc901dc3424bc051d8a281980189194ac4b0f7..537bfda33f2f916094a7f1e9ec6eb07f21f899df 100644 (file)
@@ -673,7 +673,7 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi
                if (outbound_profile) {
                        char name[128];
                        const char *id = !switch_strlen_zero(outbound_profile->caller_id_number) ? outbound_profile->caller_id_number : "na";
-                       switch_snprintf(name, sizeof(name), "PortAudio/%s", id);
+                       switch_snprintf(name, sizeof(name), "portaudio/%s", id);
 
                        switch_channel_set_name(channel, name);
 
@@ -1543,7 +1543,7 @@ static switch_status_t place_call(char **argv, int argc, switch_stream_handle_t
                if ((tech_pvt->caller_profile = switch_caller_profile_new(switch_core_session_get_pool(session),
                                                                                                                                  NULL, dialplan, cid_name, cid_num, ip, NULL, NULL, NULL, modname, NULL, dest)) != 0) {
                        char name[128];
-                       switch_snprintf(name, sizeof(name), "PortAudio/%s",
+                       switch_snprintf(name, sizeof(name), "portaudio/%s",
                                                        tech_pvt->caller_profile->destination_number ? tech_pvt->caller_profile->destination_number : modname);
                        switch_channel_set_name(channel, name);
 
index 95975de0655751008e9d98e7dcde73dc0e11a568..e5689d7a8cb67d7359a8ae0a5b0b06c6ca786f53 100644 (file)
@@ -427,7 +427,7 @@ static switch_call_cause_t woomera_outgoing_channel(switch_core_session_t *sessi
                        char name[128];
                        switch_caller_profile_t *caller_profile;
 
-                       switch_snprintf(name, sizeof(name), "Woomera/%s-%04x", outbound_profile->destination_number, rand() & 0xffff);
+                       switch_snprintf(name, sizeof(name), "woomera/%s-%04x", outbound_profile->destination_number, rand() & 0xffff);
                        switch_channel_set_name(channel, name);
 
                        caller_profile = switch_caller_profile_clone(*new_session, outbound_profile);
@@ -978,7 +978,7 @@ static void *woomera_channel_thread_run(switch_thread_t *thread, void *obj)
                                                                                                                                                  tech_pvt->profile->dialplan,
                                                                                                                                                  cid_name, cid_num, ip, NULL, NULL, NULL, modname, NULL, exten)) != 0) {
                                        char name[128];
-                                       switch_snprintf(name, sizeof(name), "Woomera/%s-%04x", tech_pvt->caller_profile->destination_number, rand() & 0xffff);
+                                       switch_snprintf(name, sizeof(name), "woomera/%s-%04x", tech_pvt->caller_profile->destination_number, rand() & 0xffff);
                                        switch_channel_set_name(channel, name);
                                        switch_channel_set_caller_profile(channel, tech_pvt->caller_profile);