From 97f5ed8be357f2d46a85590a8f0954554e5fa8fa Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 9 Jul 2007 01:25:00 +0000 Subject: Make sure the idText variable is empty, and put it in the right place for the manager ack packet. (issue #10152 reported by srt) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@73932 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/manager.c b/main/manager.c index 9ad09a906..53059479d 100644 --- a/main/manager.c +++ b/main/manager.c @@ -2241,7 +2241,7 @@ static char mandescr_coresettings[] = static int action_coresettings(struct mansession *s, const struct message *m) { const char *actionid = astman_get_header(m, "ActionID"); - char idText[150]; + char idText[150] = ""; if (!ast_strlen_zero(actionid)) snprintf(idText, sizeof(idText), "ActionID: %s\r\n", actionid); @@ -2260,8 +2260,8 @@ static int action_coresettings(struct mansession *s, const struct message *m) "CoreCDRenabled: %s\r\n" "CoreHTTPenabled: %s\r\n" , + idText, AMI_VERSION, - idText, ASTERISK_VERSION, ast_config_AST_SYSTEM_NAME, option_maxcalls, -- cgit v1.2.3