Merge branch '3518-libxml2-deprecated-functions-v9_18' into 'v9_18'

[v9_18] Do not use libxml2 deprecated functions

See merge request isc-projects/bind9!6731
This commit is contained in:
Arаm Sаrgsyаn 2022-09-06 10:03:31 +00:00
commit 5c44aad640
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
5955. [port] The libxml2 library has deprecated the usage of
xmlInitThreads() and xmlCleanupThreads() functions. Use
xmlInitParser() and xmlCleanupParser() instead.
[GL #3518]
5954. [func] Fallback to IDNA2003 processing in dig when IDNA2008
conversion fails. [GL #3485]

View file

@ -1384,7 +1384,7 @@ main(int argc, char *argv[]) {
#endif /* ifdef HAVE_GPERFTOOLS_PROFILER */
#ifdef HAVE_LIBXML2
xmlInitThreads();
xmlInitParser();
#endif /* HAVE_LIBXML2 */
/*
@ -1520,7 +1520,7 @@ main(int argc, char *argv[]) {
named_os_shutdown();
#ifdef HAVE_LIBXML2
xmlCleanupThreads();
xmlCleanupParser();
#endif /* HAVE_LIBXML2 */
#ifdef HAVE_GPERFTOOLS_PROFILER