From f11b1609f19d95196da6e0d728a939c58ad8a1e1 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 26 Sep 2006 14:06:37 +0000 Subject: [PATCH] fix windows line endings... thanks Mr.B for the report. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2838 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- .../mod_dialplan_xml/mod_dialplan_xml.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c index 7e3282fb4f..4663211ba1 100644 --- a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c +++ b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c @@ -274,14 +274,14 @@ static switch_caller_extension_t *dialplan_hunt(switch_core_session_t *session) switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Processing %s->%s!\n", caller_profile->caller_id_name, caller_profile->destination_number); - snprintf(params, sizeof(params), "context=%s&dest=%s&cid_name=%s&cid_num=%s&netaddr=%s&ani=%s&ani2=%s&rdnis=%s&source=%s&chan_name=%s&uuid=%s", - caller_profile->context, caller_profile->destination_number, - caller_profile->caller_id_name, caller_profile->caller_id_number, - caller_profile->network_addr?caller_profile->network_addr:"", - caller_profile->ani?caller_profile->ani:"", - caller_profile->ani2?caller_profile->ani2:"", - caller_profile->rdnis?caller_profile->rdnis:"", - caller_profile->source, caller_profile->chan_name, caller_profile->uuid); + snprintf(params, sizeof(params), "context=%s&dest=%s&cid_name=%s&cid_num=%s&netaddr=%s&ani=%s&ani2=%s&rdnis=%s&source=%s&chan_name=%s&uuid=%s", + caller_profile->context, caller_profile->destination_number, + caller_profile->caller_id_name, caller_profile->caller_id_number, + caller_profile->network_addr?caller_profile->network_addr:"", + caller_profile->ani?caller_profile->ani:"", + caller_profile->ani2?caller_profile->ani2:"", + caller_profile->rdnis?caller_profile->rdnis:"", + caller_profile->source, caller_profile->chan_name, caller_profile->uuid); if (switch_xml_locate("dialplan", NULL, NULL, NULL, &xml, &cfg, params) != SWITCH_STATUS_SUCCESS) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of dialplan failed\n");