Module: sip-router Branch: master Commit: 47029324eb780242b5c2bda9d707bd5396dd1278 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=47029324...
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
---
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 9b83f21..1ec842f 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;