2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Add key conflict result code

This commit is contained in:
Ted Lemon
1999-09-28 22:57:14 +00:00
parent 940ea8ab31
commit 7e2757c5f1
2 changed files with 3 additions and 1 deletions

View File

@@ -69,8 +69,9 @@ ISC_LANG_BEGINDECLS
#define ISC_R_NOTYET 41
#define ISC_R_UNCHANGED 42
#define ISC_R_MULTIPLE 43
#define ISC_R_KEYCONFLICT 44
#define ISC_R_NRESULTS 44 /* Number of results */
#define ISC_R_NRESULTS 45 /* Number of results */
char * isc_result_totext(isc_result_t);
isc_result_t isc_result_register(unsigned int base,

View File

@@ -68,6 +68,7 @@ static char *text[ISC_R_NRESULTS] = {
"data not yet available", /* 41 */
"object unchanged", /* 42 */
"more than one object matches key", /* 43 */
"key conflict", /* 44 */
};
char *isc_result_totext (isc_result_t result)