Removed unused DST_R_NAMETOOLONG result code

This commit is contained in:
Brian Wellington
2000-06-07 19:18:53 +00:00
parent 7e3d72d624
commit b01324ef07
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@
/*
* Principal Author: Brian Wellington
* $Id: dst_result.c,v 1.11 2000/06/06 21:58:09 bwelling Exp $
* $Id: dst_result.c,v 1.12 2000/06/07 19:18:51 bwelling Exp $
*/
#include <config.h>
@@ -35,7 +35,7 @@ static const char *text[DST_R_NRESULTS] = {
"illegal operation for a null key", /* 3 */
"public key is invalid", /* 4 */
"private key is invalid", /* 5 */
"key name is too long", /* 6 */
"UNUSED6", /* 6 */
"error occurred writing key to disk", /* 7 */
"invalid algorithm specific parameter", /* 8 */
"UNUSED9", /* 9 */

View File

@@ -35,7 +35,7 @@
#define DST_R_NULLKEY (ISC_RESULTCLASS_DST + 3)
#define DST_R_INVALIDPUBLICKEY (ISC_RESULTCLASS_DST + 4)
#define DST_R_INVALIDPRIVATEKEY (ISC_RESULTCLASS_DST + 5)
#define DST_R_NAMETOOLONG (ISC_RESULTCLASS_DST + 6)
/* 6 is unused */
#define DST_R_WRITEERROR (ISC_RESULTCLASS_DST + 7)
#define DST_R_INVALIDPARAM (ISC_RESULTCLASS_DST + 8)
/* 9 is unused */