FSCORE-539 (revert )

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16513 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2010-01-25 15:13:35 +00:00
parent 05a2d598c7
commit b772e731a9

View File

@ -499,7 +499,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_menu_execute(switch_core_session_t *s
break; break;
case SWITCH_IVR_ACTION_PLAYSOUND: case SWITCH_IVR_ACTION_PLAYSOUND:
status = switch_ivr_play_file(session, NULL, aptr, NULL); status = switch_ivr_play_file(session, NULL, aptr, NULL);
running = 0;
break; break;
case SWITCH_IVR_ACTION_EXECMENU: case SWITCH_IVR_ACTION_EXECMENU:
if (!strcmp(aptr, menu->name)) { if (!strcmp(aptr, menu->name)) {
@ -507,7 +506,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_menu_execute(switch_core_session_t *s
} else { } else {
reps = -1; reps = -1;
status = switch_ivr_menu_execute(session, stack, aptr, obj); status = switch_ivr_menu_execute(session, stack, aptr, obj);
running = 0;
} }
break; break;
case SWITCH_IVR_ACTION_EXECAPP: case SWITCH_IVR_ACTION_EXECAPP:
@ -528,7 +526,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_menu_execute(switch_core_session_t *s
switch_core_session_exec(session, application_interface, app_arg); switch_core_session_exec(session, application_interface, app_arg);
UNPROTECT_INTERFACE(application_interface); UNPROTECT_INTERFACE(application_interface);
status = SWITCH_STATUS_SUCCESS; status = SWITCH_STATUS_SUCCESS;
running = 0;
} }
} }
} }