From: Moises Silva Date: Thu, 24 Feb 2011 18:14:23 +0000 (-0500) Subject: freetdm: remove sanity state check in outgoing function X-Git-Tag: v1.2-rc1~181^2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62d000ed20305dcccefd5ac8b9ddbb40016e879b;p=thirdparty%2Ffreeswitch.git freetdm: remove sanity state check in outgoing function --- diff --git a/libs/freetdm/src/ftdm_io.c b/libs/freetdm/src/ftdm_io.c index 504c00f33c..133420922b 100644 --- a/libs/freetdm/src/ftdm_io.c +++ b/libs/freetdm/src/ftdm_io.c @@ -2430,11 +2430,6 @@ static ftdm_status_t _ftdm_channel_call_place_nl(const char *file, const char *f goto done; } - if (ftdmchan->state != FTDM_CHANNEL_STATE_DOWN) { - ftdm_log_chan(ftdmchan, FTDM_LOG_ERROR, "Cannot place call in channel in state %s!\n", ftdm_channel_state2str(ftdmchan->state)); - goto done; - } - status = ftdmchan->span->outgoing_call(ftdmchan); if (status == FTDM_BREAK) { /* the signaling module detected glare on time */