dect
/
asterisk
Archived
13
0
Fork 0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7010 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2005-11-08 01:50:35 +00:00
parent 82a6c86786
commit 82616a4d97
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2005-11-07 Kevin P. Fleming <kpfleming@digium.com>
* pbx.c (handle_show_hints): use proper state-to-string function for hint state (issue #5583)
* rtp.c: use unsigned format for debug packet output (issue #5595)
* asterisk.c (main): force a dnsmgr background refresh after all other modules are initialized (issue #5599)

2
pbx.c
View File

@ -3154,7 +3154,7 @@ static int handle_show_hints(int fd, int argc, char *argv[])
watchers++;
ast_cli(fd, " %-20.20s: %-20.20s State:%-15.15s Watchers %2d\n",
ast_get_extension_name(hint->exten), ast_get_extension_app(hint->exten),
devstate2str(hint->laststate), watchers);
ast_extension_state2str(hint->laststate), watchers);
num++;
hint = hint->next;
}