summaryrefslogtreecommitdiff
path: root/channels/console_gui.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2008-01-01 23:55:19 +0000
committerLuigi Rizzo <rizzo@icir.org>2008-01-01 23:55:19 +0000
commite7f195e82ab286c925153ffcff1c9e6e66e2ede2 (patch)
tree486e98897f6309252f6a8db2960f89b1840d4c33 /channels/console_gui.c
parentafc18baa1ab38996bad8f11d42758fe0aa61790e (diff)
call directly the cli command to implement hangup.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95673 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/console_gui.c')
-rw-r--r--channels/console_gui.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/channels/console_gui.c b/channels/console_gui.c
index f733a1a0a..73aa94a05 100644
--- a/channels/console_gui.c
+++ b/channels/console_gui.c
@@ -4,7 +4,6 @@
* $Revision$
*/
-
#include "asterisk.h"
#include "console_video.h"
#include "asterisk/lock.h"
@@ -423,7 +422,7 @@ static void handle_button_event(struct video_desc *env, SDL_MouseButtonEvent but
keypad_pick_up(env);
break;
case KEY_HANG_UP:
- keypad_send_command(env, "console hangup");
+ ast_cli_command(gui->outfd, "console hangup");
break;
/* other functions */