mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
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:
6
pbx.c
6
pbx.c
@@ -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;
|
||||
|
Reference in New Issue
Block a user