From 87ecd67dae468cf5c9bae213c6fa321449b2ebc2 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Tue, 5 Sep 2000 17:09:30 +0000 Subject: [PATCH] 419. [bug] The certificate type PKIX was misspelled as SKIX. --- CHANGES | 2 ++ lib/dns/rdata.c | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 00a134a540..9a237ffae9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,6 @@ + 419. [bug] The certificate type PKIX was misspelled as SKIX. + 418. [bug] At debug levels >= 10, getting an unexpected socket receive error would crash the server while trying to log the error message. diff --git a/lib/dns/rdata.c b/lib/dns/rdata.c index 8899d117cd..087421bd5e 100644 --- a/lib/dns/rdata.c +++ b/lib/dns/rdata.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rdata.c,v 1.105 2000/08/01 01:22:44 tale Exp $ */ +/* $Id: rdata.c,v 1.106 2000/09/05 17:09:30 gson Exp $ */ #include #include @@ -228,8 +228,10 @@ static const char decdigits[] = "0123456789"; { dns_tsigerror_badalg, "BADALG", 0}, \ { 0, NULL, 0 } +/* RFC2538 section 2.1 */ + #define CERTNAMES \ - { 1, "SKIX", 0}, \ + { 1, "PKIX", 0}, \ { 2, "SPKI", 0}, \ { 3, "PGP", 0}, \ { 253, "URI", 0}, \