From: Russell Bryant Date: Fri, 16 Sep 2005 18:11:00 +0000 (+0000) Subject: clean up singular vs. plural output for the 'show dialplan' CLI command X-Git-Tag: 1.2.0-beta2~292 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56ca94095a2bf7a071232d2432563643adaa46ef;p=thirdparty%2Fasterisk.git 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 --- diff --git a/pbx.c b/pbx.c index a2f38f6c1f..c5cc805029 100755 --- a/pbx.c +++ b/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;