for (mp = sip->sip_multipart; mp; mp = mp->mp_next) {
if (mp->mp_payload && mp->mp_payload->pl_data && mp->mp_content_type && mp->mp_content_type->c_type) {
- switch_channel_set_variable_name_printf(channel, mp->mp_payload->pl_data, SOFIA_MULTIPART_PREFIX "%s", mp->mp_content_type->c_type);
+ char *name = switch_core_session_strdup(session, mp->mp_content_type->c_type);
+ char *p;
+
+ for (p = name; p && *p; p++) {
+ if (*p == '/') {
+ *p = '_';
+ }
+ }
+
+ switch_channel_set_variable_name_printf(channel, mp->mp_payload->pl_data, SOFIA_MULTIPART_PREFIX "%s", name);
}
}
}