From 54478c3a0a2c61e28887338d288b3f527607a4cd Mon Sep 17 00:00:00 2001 From: Jeremy McNamara Date: Tue, 13 Jan 2004 09:11:36 +0000 Subject: [PATCH] h.323 gk cycle is still broken on -r git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2018 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_h323.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/channels/chan_h323.c b/channels/chan_h323.c index 992bb4b109..d95de59d74 100755 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -1327,6 +1327,10 @@ static int h323_no_debug(int fd, int argc, char *argv[]) static int h323_gk_cycle(int fd, int argc, char *argv[]) { + result RESULT_SUCCESS; + +/* This works from a full console, but not -r ?! */ + if (argc != 3) { return RESULT_SHOWUSAGE; } @@ -1334,7 +1338,7 @@ static int h323_gk_cycle(int fd, int argc, char *argv[]) /* Possibly register with a GK */ if (!gatekeeper_disable) { - if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) { +// boom if -r if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) { ast_log(LOG_ERROR, "Gatekeeper registration failed.\n"); } }