Module: sip-router Branch: kamailio_3.0 Commit: 0f3062c9850bb7d31e0ddcccc1c386104d4e754d URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0f3062c9...
Author: Henning Westerholt henning.westerholt@1und1.de Committer: Henning Westerholt henning.westerholt@1und1.de Date: Mon Jan 17 18:47:44 2011 +0100
rls: fix small typo, reported from Klaus in FS#11 (cherry picked from commit 47029324eb780242b5c2bda9d707bd5396dd1278)
---
modules_k/rls/notify.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/rls/notify.c b/modules_k/rls/notify.c index 85c62a4..d2fee55 100644 --- a/modules_k/rls/notify.c +++ b/modules_k/rls/notify.c @@ -231,7 +231,7 @@ int agg_body_sendn_update(str* rl_uri, char* boundary_string, str* rlmi_body, len+= sprintf(body.s+ len , "Content-Transfer-Encoding: binary\r\n"); len+= sprintf(body.s+ len , "Content-ID: <%s>\r\n", cid); len+= sprintf(body.s+ len , - "Content-Type: application/rlmi+xml;charset="UTF-8r"\r\n"); + "Content-Type: application/rlmi+xml;charset="UTF-8"\r\n"); len+= sprintf(body.s+ len, "\r\n"); /*blank line*/ memcpy(body.s+ len, rlmi_body->s, rlmi_body->len); len+= rlmi_body->len;