FS-3873 --resolve cool someone is finally testing it

This commit is contained in:
Anthony Minessale 2012-02-03 11:05:22 -06:00
parent 7f5b8fba55
commit 32c73c0825
1 changed files with 2 additions and 2 deletions

View File

@ -545,7 +545,7 @@ static switch_status_t parse_playback(const char *tag_name, client_t *client, sw
if (input_timeout && status == SWITCH_STATUS_SUCCESS) {
if ((status = switch_ivr_sleep(client->session, input_timeout, SWITCH_TRUE, args)) == SWITCH_STATUS_SUCCESS) {
status = SWITCH_STATUS_BREAK;
status = (input || !pause) ? SWITCH_STATUS_BREAK : SWITCH_STATUS_SUCCESS;
}
}
@ -622,7 +622,7 @@ static switch_status_t parse_playback(const char *tag_name, client_t *client, sw
if (dmachine) {
switch_ivr_dmachine_destroy(&dmachine);
}
printf("WTF %d\n", status);
return status;
}