remove a debug message and make the exit keys not be case sensitive

inside of a category menu


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26441 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-05-10 13:05:17 +00:00
parent fdcfd6469b
commit 8e897e1a53
2 changed files with 5 additions and 4 deletions

View File

@ -726,6 +726,5 @@ int main(int argc, char *argv[])
if (force_clean)
unlink(".lastclean");
fprintf(stderr, "\nmenuselect about to exit with res %d\n", res);
exit(res);
}

View File

@ -143,9 +143,11 @@ void draw_category_menu(WINDOW *menu, struct category *cat, int start, int end,
snprintf(buf, sizeof(buf), "XXX %d.%s %s", i, i < 10 ? " " : "", mem->name);
else
snprintf(buf, sizeof(buf), "[%s] %d.%s %s", mem->enabled ? "*" : " ", i, i < 10 ? " " : "", mem->name);
if (curopt + 1== i)
desc = mem->displayname;
waddstr(menu, buf);
if (curopt + 1 == i)
desc = mem->displayname;
if (i == end)
break;
}
@ -227,7 +229,7 @@ int run_category_menu(WINDOW *menu, int cat_num)
default:
break;
}
if (c == 'x' || c == 'q')
if (c == 'x' || c == 'X' || c == 'Q' || c == 'q')
break;
draw_category_menu(menu, cat, start, end, curopt);
}