Module: kamailio
Branch: master
Commit: 371293257d000c004f78068f15a4184df3dbd57b
URL:
https://github.com/kamailio/kamailio/commit/371293257d000c004f78068f15a4184…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-07-24T12:14:18+02:00
presence_xml: fixed misleading error message
---
Modified: src/modules/presence_xml/presence_xml.c
---
Diff:
https://github.com/kamailio/kamailio/commit/371293257d000c004f78068f15a4184…
Patch:
https://github.com/kamailio/kamailio/commit/371293257d000c004f78068f15a4184…
---
diff --git a/src/modules/presence_xml/presence_xml.c
b/src/modules/presence_xml/presence_xml.c
index da0e056e3e..0f221852d7 100644
--- a/src/modules/presence_xml/presence_xml.c
+++ b/src/modules/presence_xml/presence_xml.c
@@ -242,7 +242,7 @@ static int mod_init(void)
xcap_GetNewDoc= xcap_api.getNewDoc;
if(xcap_GetNewDoc== NULL)
{
- LM_ERR("can't import get_elem from xcap_client module\n");
+ LM_ERR("can't import getNewDoc from xcap_client module\n");
return -1;
}
@@ -559,4 +559,4 @@ int mod_register(char *path, int *dlflags, void *p1, void *p2)
{
sr_kemi_modules_add(sr_kemi_presence_xml_exports);
return 0;
-}
\ No newline at end of file
+}