mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-22 06:37:42 -04:00
419. [bug] The certificate type PKIX was misspelled as SKIX.
This commit is contained in:
parent
8011cb06c9
commit
87ecd67dae
2 changed files with 6 additions and 2 deletions
2
CHANGES
2
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.
|
||||
|
|
|
|||
|
|
@ -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 <config.h>
|
||||
#include <ctype.h>
|
||||
|
|
@ -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}, \
|
||||
|
|
|
|||
Loading…
Reference in a new issue