fix patch from (MODENDP-231)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14376 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d6f9544be3
commit
7d205f5d6c
|
@ -671,14 +671,13 @@ void event_handler(switch_event_t *event)
|
|||
switch_copy_string(fixed_contact_str, contact_str, len);
|
||||
|
||||
if ((sptr = strstr(fixed_contact_str, needle))) {
|
||||
if (!(eptr = strchr(fixed_contact_str, ';'))) {
|
||||
eptr = strrchr(fixed_contact_str, '>');
|
||||
}
|
||||
char *origsptr = strstr(contact_str, needle);
|
||||
eptr = strchr(++origsptr, ';');
|
||||
} else {
|
||||
sptr = strchr(fixed_contact_str, '\0') - 1;
|
||||
}
|
||||
|
||||
switch_snprintf(sptr, len - (sptr - fixed_contact_str), ";fs_path=sip:%s%s%s", to_host, eptr ? ";" : "", eptr ? eptr : ">");
|
||||
switch_snprintf(sptr, len - (sptr - fixed_contact_str), ";fs_path=sip:%s%s", to_host, eptr ? eptr : ">");
|
||||
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Rewrote contact string from '%s' to '%s'\n", contact_str, fixed_contact_str);
|
||||
contact_str = fixed_contact_str;
|
||||
|
|
Loading…
Reference in New Issue