remove warning on format string.

git-svn-id: file:///svn/unbound/trunk@1964 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2010-01-27 20:29:07 +00:00
parent f437de11a6
commit e7da8f089e
2 changed files with 4 additions and 1 deletions

View file

@ -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.

View file

@ -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);
} }
} }