From: Mark Andrews Date: Wed, 2 May 2012 23:29:32 +0000 (+1000) Subject: Use '==' not '=' in conditional test when not using openssl. X-Git-Tag: v9.10.0a1~1180^2~73 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=89bbdd1f694c7237c29e2fefc0eaac47c7fe544f;p=thirdparty%2Fbind9.git Use '==' not '=' in conditional test when not using openssl. --- diff --git a/lib/dns/dst_api.c b/lib/dns/dst_api.c index a7870d6858b..0ad454f70ca 100644 --- a/lib/dns/dst_api.c +++ b/lib/dns/dst_api.c @@ -1711,7 +1711,7 @@ algorithm_status(unsigned int alg) { alg == DST_ALG_NSEC3RSASHA1 || alg == DST_ALG_RSASHA256 || alg == DST_ALG_RSASHA512 || alg == DST_ALG_ECCGOST || - alg = DST_ALG_ECDSA256 || alg= DST_ALG_ECDSA384) + alg == DST_ALG_ECDSA256 || alg == DST_ALG_ECDSA384) return (DST_R_NOCRYPTO); #endif return (DST_R_UNSUPPORTEDALG);