From: Mark Andrews Date: Tue, 3 Nov 2009 19:43:54 +0000 (+0000) Subject: UNUSED(engine) if !defined(OPENSSL) X-Git-Tag: v9.7.0b3~82 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5ccd971c729ae2d1116e0243e689c010e45decaf;p=thirdparty%2Fbind9.git UNUSED(engine) if !defined(OPENSSL) --- diff --git a/lib/dns/dst_api.c b/lib/dns/dst_api.c index 420aaf2a067..5b12e98b5a9 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)