From: Anthony Minessale Date: Fri, 17 Jun 2011 19:41:31 +0000 (-0500) Subject: fix type X-Git-Tag: v1.2-rc1~108^2^2~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8ae13a8;p=thirdparty%2Ffreeswitch.git fix type --- diff --git a/src/mod/endpoints/mod_rtmp/mod_rtmp.c b/src/mod/endpoints/mod_rtmp/mod_rtmp.c index 35fe4bb885..af13d31eb3 100644 --- a/src/mod/endpoints/mod_rtmp/mod_rtmp.c +++ b/src/mod/endpoints/mod_rtmp/mod_rtmp.c @@ -915,7 +915,7 @@ switch_call_cause_t rtmp_session_create_call(rtmp_session_t *rsession, switch_co goto fail; } - return SWITCH_CAUSE_NONE; + return SWITCH_CAUSE_SUCCESS; fail: switch_core_session_destroy(newsession); @@ -1609,7 +1609,7 @@ SWITCH_STANDARD_API(rtmp_function) } if (!zstr(dest)) { - if (rtmp_session_create_call(rsession, &newsession, 0, RTMP_DEFAULT_STREAM_AUDIO, dest, user, domain, NULL) != SWITCH_STATUS_SUCCESS) { + if (rtmp_session_create_call(rsession, &newsession, 0, RTMP_DEFAULT_STREAM_AUDIO, dest, user, domain, NULL) != SWITCH_CAUSE_SUCCESS) { stream->write_function(stream, "-ERR Couldn't create new call\n"); } else { rtmp_private_t *new_pvt = switch_core_session_get_private(newsession);