]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
lower case for consistency
authorBrian West <brian@freeswitch.org>
Mon, 29 Sep 2008 19:20:06 +0000 (19:20 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 29 Sep 2008 19:20:06 +0000 (19:20 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9747 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_loopback/mod_loopback.c

index 93626b8cae77ebce9559c13ac52339ac1f48c310..c4583db8a5f39c1e2927f3fa1d7855923d1c4aca 100644 (file)
@@ -214,7 +214,7 @@ static switch_status_t channel_on_init(switch_core_session_t *session)
                b_channel = switch_core_session_get_channel(b_session);
                b_tech_pvt = (private_t *) switch_core_session_alloc(b_session, sizeof(*b_tech_pvt));
 
-               switch_snprintf(name, sizeof(name), "Loopback/%s-b", tech_pvt->caller_profile->destination_number);
+               switch_snprintf(name, sizeof(name), "loopback/%s-b", tech_pvt->caller_profile->destination_number);
                switch_channel_set_name(b_channel, name);
                if (tech_init(b_tech_pvt, b_session, switch_core_session_get_read_codec(session)) != SWITCH_STATUS_SUCCESS) {
                        switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);