mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 07:19:59 -04:00
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:
commit
5c44aad640
2 changed files with 7 additions and 2 deletions
5
CHANGES
5
CHANGES
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue