diff --git a/lib/dns/sec/dst/dst_result.c b/lib/dns/sec/dst/dst_result.c index cf71e97ef4..b280abb9a1 100644 --- a/lib/dns/sec/dst/dst_result.c +++ b/lib/dns/sec/dst/dst_result.c @@ -17,7 +17,7 @@ /* * Principal Author: Brian Wellington - * $Id: dst_result.c,v 1.16 2001/01/09 21:55:32 bwelling Exp $ + * $Id: dst_result.c,v 1.17 2001/07/10 04:34:35 bwelling Exp $ */ #include @@ -31,7 +31,7 @@ static const char *text[DST_R_NRESULTS] = { "algorithm is unsupported", /* 0 */ "openssl failure", /* 1 */ - "UNUSED2", /* 2 */ + "built with no support for crypto", /* 2 */ "illegal operation for a null key", /* 3 */ "public key is invalid", /* 4 */ "private key is invalid", /* 5 */ diff --git a/lib/dns/sec/dst/include/dst/result.h b/lib/dns/sec/dst/include/dst/result.h index e5667387dc..bad227753f 100644 --- a/lib/dns/sec/dst/include/dst/result.h +++ b/lib/dns/sec/dst/include/dst/result.h @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: result.h,v 1.19 2001/01/09 21:55:46 bwelling Exp $ */ +/* $Id: result.h,v 1.20 2001/07/10 04:34:36 bwelling Exp $ */ #ifndef DST_RESULT_H #define DST_RESULT_H 1 @@ -33,7 +33,7 @@ #define DST_R_UNSUPPORTEDALG (ISC_RESULTCLASS_DST + 0) #define DST_R_OPENSSLFAILURE (ISC_RESULTCLASS_DST + 1) -/* 2 is unused */ +#define DST_R_NOCRYPTO (ISC_RESULTCLASS_DST + 2) #define DST_R_NULLKEY (ISC_RESULTCLASS_DST + 3) #define DST_R_INVALIDPUBLICKEY (ISC_RESULTCLASS_DST + 4) #define DST_R_INVALIDPRIVATEKEY (ISC_RESULTCLASS_DST + 5)