summaryrefslogtreecommitdiff
path: root/res/res_features.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-20 16:27:44 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-20 16:27:44 +0000
commitf6ddf9b97109e9db25b29c78eb23489ed8884152 (patch)
tree8d716803eb9bda90f88f691bcf0a090d3beafc8e /res/res_features.c
parent6d05d785be6338d3e3e4eb2f3808c840a137a22e (diff)
add count of parked calls to 'show parkedcalls' (bug #4023)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_features.c')
-rwxr-xr-xres/res_features.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 178e72a6d..508a2e690 100755
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1423,6 +1423,7 @@ static struct ast_cli_entry showfeatures =
static int handle_parkedcalls(int fd, int argc, char *argv[])
{
struct parkeduser *cur;
+ int numparked = 0;
ast_cli(fd, "%4s %25s (%-15s %-12s %-4s) %-6s \n", "Num", "Channel"
, "Context", "Extension", "Pri", "Timeout");
@@ -1436,7 +1437,9 @@ static int handle_parkedcalls(int fd, int argc, char *argv[])
,cur->priority, cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL));
cur = cur->next;
+ numparked++;
}
+ ast_cli(fd, "%d parked call(s).\n",numparked);
ast_mutex_unlock(&parking_lock);