]> git.ipfire.org Git - thirdparty/freeswitch.git/commit
[core] Fix copy/paste mistake in switch_xml.h 198/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Wed, 1 Jan 2020 14:29:26 +0000 (15:29 +0100)
committerSebastian Kemper <sebastian_ml@gmx.net>
Wed, 1 Jan 2020 14:29:28 +0000 (15:29 +0100)
commit28d39be261fa67442f0a86b254f1be7929bd6c96
treeb839983321fb83b8b1d1b0e79be1445f71cadf24
parent965bd27d5436fc803ef834823617870ebbb98d61
[core] Fix copy/paste mistake in switch_xml.h

Commit 7907994 introduced a copy/paste mistake that may result in
compile failure:

In file included from ../../../../src/include/switch.h:134,
                 from mod_xml_ldap.c:34:
mod_xml_ldap.c: In function 'xml_ldap_search':
../../../../src/include/switch_xml.h:236:68: error: implicit declaration of function 'switch_xml_toxml_buf'; did you mean 'switch_xml_toxml_buf_ex'? [-Werror=implicit-function-declaration]
 #define switch_xml_toxml_buf(xml, buf, buflen, offset, prn_header) switch_xml_toxml_buf(xml, buf, buflen, offset, prn_header, USE_UTF_8_ENCODING);
                                                                    ^~~~~~~~~~~~~~~~~~~~
mod_xml_ldap.c:764:9: note: in expansion of macro 'switch_xml_toxml_buf'
         switch_xml_toxml_buf(xml, buf, 0, 0, 1);
         ^~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make[7]: *** [Makefile:710: mod_xml_ldap_la-mod_xml_ldap.lo] Error 1

This commit fixes the mistake.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
src/include/switch_xml.h