2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

silence compiler

This commit is contained in:
Mark Andrews 2002-03-19 15:57:23 +00:00
parent f76c4ebaf5
commit c6b78d91a1

View File

@ -15,7 +15,10 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zonetodb.c,v 1.11 2002/03/19 03:32:08 marka Exp $ */
/* $Id: zonetodb.c,v 1.12 2002/03/19 15:57:23 marka Exp $ */
#include <stdlib.h>
#include <string.h>
#include <isc/buffer.h>
#include <isc/mem.h>
@ -29,6 +32,7 @@
#include <dns/rdata.h>
#include <dns/rdataset.h>
#include <dns/rdatasetiter.h>
#include <dns/rdatatype.h>
#include <dns/result.h>
#include <pgsql/libpq-fe.h>
@ -273,4 +277,5 @@ main(int argc, char **argv) {
dns_db_detach(&db);
isc_mem_destroy(&mctx);
closeandexit(0);
exit(0);
}