From 5ccd971c729ae2d1116e0243e689c010e45decaf Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 3 Nov 2009 19:43:54 +0000 Subject: [PATCH] UNUSED(engine) if !defined(OPENSSL) --- lib/dns/dst_api.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/dns/dst_api.c b/lib/dns/dst_api.c index 420aaf2a06..5b12e98b5a 100644 --- a/lib/dns/dst_api.c +++ b/lib/dns/dst_api.c @@ -31,7 +31,7 @@ /* * Principal Author: Brian Wellington - * $Id: dst_api.c,v 1.45 2009/10/27 22:25:37 marka Exp $ + * $Id: dst_api.c,v 1.46 2009/11/03 19:43:54 marka Exp $ */ /*! \file */ @@ -162,6 +162,10 @@ dst_lib_init2(isc_mem_t *mctx, isc_entropy_t *ectx, #endif REQUIRE(dst_initialized == ISC_FALSE); +#ifndef OPENSSL + UNUSED(engine); +#endif + dst__memory_pool = NULL; #if defined(OPENSSL) && defined(BIND9)