From 8ece099c13add2465741a14619cc73b672947b3d Mon Sep 17 00:00:00 2001 From: bagyenda <> Date: Sat, 11 Nov 2006 05:49:19 +0000 Subject: [PATCH] Fix: reply charging attribute in mm7 module --- mbuni/ChangeLog | 3 +++ mbuni/mmlib/mms_mm7soap.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mbuni/ChangeLog b/mbuni/ChangeLog index 426579d..da685b8 100644 --- a/mbuni/ChangeLog +++ b/mbuni/ChangeLog @@ -1,3 +1,6 @@ +2006-11-11 Paul A. Bagyenda + * Minor fix in MM7 module (replycharging attribute), + thanks to Michel Martin 2006-11-07 Paul A. Bagyenda * Improved source organisation (Changelog populated, better version string) diff --git a/mbuni/mmlib/mms_mm7soap.c b/mbuni/mmlib/mms_mm7soap.c index 801f204..63801c7 100644 --- a/mbuni/mmlib/mms_mm7soap.c +++ b/mbuni/mmlib/mms_mm7soap.c @@ -182,7 +182,7 @@ static int parse_header(xmlNodePtr node, List *headers, int *sigparent) break; case MM7_TAG_ReplyCharging: - value = octstr_imm("Requested"); + value = octstr_create("Requested"); if ((s = xmlGetProp(node, (unsigned char *)"replyChargingSize")) != NULL) { http_header_add(headers, "replyChargingSize", (char *)s);