]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix sloppy commit when updated to new module interface
authorMichael Jerris <mike@jerris.com>
Wed, 15 Aug 2007 15:54:00 +0000 (15:54 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 15 Aug 2007 15:54:00 +0000 (15:54 +0000)
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@308 a93c3328-9c30-0410-af19-c9cd2b2d52af

libs/freetdm/mod_openzap/mod_openzap.c

index b70b5cfaeee465d98e403607093cd8db87534f40..bbb7403a047c2d64bd37e06c447aaca88bd0d6b2 100644 (file)
@@ -731,7 +731,7 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi
 
 
 
-       if ((*new_session = switch_core_session_request(&channel_endpoint_interface, pool)) != 0) {
+       if ((*new_session = switch_core_session_request(channel_endpoint_interface, pool)) != 0) {
                private_t *tech_pvt;
                switch_channel_t *channel;
                switch_caller_profile_t *caller_profile;
@@ -801,7 +801,7 @@ zap_status_t zap_channel_from_event(zap_sigmsg_t *sigmsg, switch_core_session_t
        
        *sp = NULL;
        
-       if (!(session = switch_core_session_request(&channel_endpoint_interface, NULL))) {
+       if (!(session = switch_core_session_request(channel_endpoint_interface, NULL))) {
                return ZAP_FAIL;
        }