]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-2998: prefix-a-leg not respected for url submission
authorBrian West <brian@freeswitch.org>
Wed, 19 Jan 2011 17:38:36 +0000 (11:38 -0600)
committerBrian West <brian@freeswitch.org>
Wed, 19 Jan 2011 17:38:36 +0000 (11:38 -0600)
src/mod/xml_int/mod_xml_cdr/mod_xml_cdr.c

index a439ab8203b63bbae0e2be49187ba307a047cce8..78d97ce259ea79ed7107d6dfeca0e0b2b7f354e9 100644 (file)
@@ -340,7 +340,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
                                switch_yield(globals.delay * 1000000);
                        }
 
-                       destUrl = switch_mprintf("%s?uuid=%s", globals.urls[globals.url_index], switch_core_session_get_uuid(session));
+                       destUrl = switch_mprintf("%s?uuid=%s%s", globals.urls[globals.url_index], a_prefix, switch_core_session_get_uuid(session));
                        curl_easy_setopt(curl_handle, CURLOPT_URL, destUrl);
 
                        if (!strncasecmp(destUrl, "https", 5)) {