summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-07-09 01:25:00 +0000
committerJoshua Colp <jcolp@digium.com>2007-07-09 01:25:00 +0000
commit97f5ed8be357f2d46a85590a8f0954554e5fa8fa (patch)
treee7c2827ffcc82a9b90cf81f8384dafa5d2508f73
parentd61056132a08ae4cb27e63f6ce2de44be0e66e13 (diff)
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
-rw-r--r--main/manager.c4
1 files 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,