fix for MODENDP-21. We should add better handling of all the possible values for this.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5569 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-08-04 06:09:48 +00:00
parent 62cafc8e33
commit 36509dfeb4
1 changed files with 1 additions and 1 deletions

View File

@ -1088,7 +1088,7 @@ uint8_t sofia_glue_negotiate_sdp(switch_core_session_t *session, sdp_session_t *
continue;
}
if (!strcasecmp(a->a_name, "sendonly")) {
if ((!strcasecmp(a->a_name, "sendonly")) || (!strcasecmp(a->a_name, "inactive"))) {
sendonly = 1;
} else if (!strcasecmp(a->a_name, "sendrecv")) {
sendonly = 0;