clean up singular vs. plural output for the 'show dialplan' CLI command

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6623 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-09-16 18:11:00 +00:00
parent b28847320d
commit 56ca94095a

6
pbx.c
View File

@@ -3506,8 +3506,10 @@ static int handle_show_dialplan(int fd, int argc, char *argv[])
return RESULT_FAILURE;
}
ast_cli(fd,"-= %d extensions (%d priorities) in %d contexts. =-\n",
counters.total_exten, counters.total_prio, counters.total_context);
ast_cli(fd,"-= %d %s (%d %s) in %d %s. =-\n",
counters.total_exten, counters.total_exten == 1 ? "extension" : "extensions",
counters.total_prio, counters.total_prio == 1 ? "priority" : "priorities",
counters.total_context, counters.total_context == 1 ? "context" : "contexts");
/* everything ok */
return RESULT_SUCCESS;