Index: res/res_features.c =================================================================== RCS file: /usr/cvsroot/asterisk/res/res_features.c,v retrieving revision 1.45 diff -u -r1.45 res_features.c --- res/res_features.c 24 Mar 2005 05:37:59 -0000 1.45 +++ res/res_features.c 13 Apr 2005 03:48:31 -0000 @@ -1430,13 +1430,16 @@ ast_mutex_lock(&parking_lock); cur = parkinglot; + int numparked = 0; while(cur) { ast_cli(fd, "%4d %25s (%-15s %-12s %-4d) %6lds\n" ,cur->parkingnum, cur->chan->name, cur->context, cur->exten ,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);