mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
remove warning on format string.
git-svn-id: file:///svn/unbound/trunk@1964 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
f437de11a6
commit
e7da8f089e
2 changed files with 4 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
27 January 2010: Wouter
|
||||||
|
- removed warning on format string in validator error log statement.
|
||||||
|
|
||||||
22 January 2010: Wouter
|
22 January 2010: Wouter
|
||||||
- libtool finish the install of unbound python dynamic library.
|
- libtool finish the install of unbound python dynamic library.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1925,7 +1925,7 @@ processFinished(struct module_qstate* qstate, struct val_qstate* vq,
|
||||||
&qstate->qinfo);
|
&qstate->qinfo);
|
||||||
else {
|
else {
|
||||||
char* err = errinf_to_str(qstate);
|
char* err = errinf_to_str(qstate);
|
||||||
if(err) log_info(err);
|
if(err) log_info("%s", err);
|
||||||
free(err);
|
free(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue