From: Kevin P. Fleming Date: Tue, 8 Nov 2005 01:50:35 +0000 (+0000) Subject: issue #5583 X-Git-Tag: 1.2.0-rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ea48ce114efcce674220ef6cbb1cd61f3e79494;p=thirdparty%2Fasterisk.git issue #5583 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7010 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/ChangeLog b/ChangeLog index b49c040989..6ca8f4e919 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-11-07 Kevin P. Fleming + * 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) diff --git a/pbx.c b/pbx.c index 6040aeeee8..29a1d893a6 100755 --- a/pbx.c +++ b/pbx.c @@ -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; }