git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7836 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-03-07 23:17:01 +00:00
parent 90e882dd03
commit c70470daa4
1 changed files with 1 additions and 1 deletions

View File

@ -1472,7 +1472,7 @@ case VM_CHECK_CONFIG:
TRY_CODE(vm_macro_get(session, VM_CHOOSE_GREETING_MACRO, key_buf, input, sizeof(input), 1, "", &term, timeout));
num = atoi(input);
if (num < 1 || num > 3) {
if (num < 1 || num > 9) {
TRY_CODE(switch_ivr_phrase_macro(session, VM_CHOOSE_GREETING_FAIL_MACRO, NULL, NULL, NULL));
} else {
file_path = switch_mprintf("%s%sgreeting_%d.%s", dir_path, SWITCH_PATH_SEPARATOR, num, profile->file_ext);