From d0cda3c75737784b4801c6b161cbbfd515c4ceba Mon Sep 17 00:00:00 2001 From: Mike Murdock Date: Mon, 19 Feb 2007 17:00:29 +0000 Subject: [PATCH] Fix indents to tabs in previous commit git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4326 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/switch_ivr.c b/src/switch_ivr.c index 7d9d795406..e2ab69e72a 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -4406,10 +4406,11 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_menu_execute(switch_core_session_t *s if (!match) { if (*menu->buf) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "IVR menu '%s' caught invalid input '%s'\n", menu->name, menu->buf); - if (menu->invalid_sound) { - play_or_say(session, menu, menu->invalid_sound, 0); - } - } else { + if (menu->invalid_sound) { + play_or_say(session, menu, menu->invalid_sound, 0); + } + } + else { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "IVR menu '%s' no input detected\n", menu->name); } errs++;