diff --git a/lib/isc/include/isc/result.h b/lib/isc/include/isc/result.h index c923cd2886..67ca3d7dcf 100644 --- a/lib/isc/include/isc/result.h +++ b/lib/isc/include/isc/result.h @@ -41,7 +41,7 @@ ISC_LANG_BEGINDECLS #define ISC_R_NORESOURCES 13 /* not enough resources */ #define ISC_R_EOF 14 /* end of file */ #define ISC_R_BOUND 15 /* already bound */ -/* AVAILABLE CODE 16 */ +#define ISC_R_RELOAD 16 #define ISC_R_LOCKBUSY 17 #define ISC_R_EXISTS 18 #define ISC_R_NOSPACE 19 /* ran out of space */ diff --git a/lib/isc/result.c b/lib/isc/result.c index e9cd56aa0e..220c543caa 100644 --- a/lib/isc/result.c +++ b/lib/isc/result.c @@ -56,7 +56,7 @@ static char *text[ISC_R_NRESULTS] = { "not enough free resources", /* 13 */ "end of file", /* 14 */ "socket already bound", /* 15 */ - "", /* 16 */ + "reload", /* 16 */ "lock busy", /* 17 */ "already exists", /* 18 */ "ran out of space", /* 19 */