From: Ted Lemon Date: Tue, 28 Sep 1999 22:57:14 +0000 (+0000) Subject: Add key conflict result code X-Git-Tag: V3-BETA-1-PATCH-2~5^2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e2757c5f1e874478398a9caaff8eb3579fc2b51;p=thirdparty%2Fdhcp.git Add key conflict result code --- diff --git a/includes/isc/result.h b/includes/isc/result.h index 8ea51043f..bd0f1282d 100644 --- a/includes/isc/result.h +++ b/includes/isc/result.h @@ -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, diff --git a/omapip/result.c b/omapip/result.c index 246f43464..abf29f3a2 100644 --- a/omapip/result.c +++ b/omapip/result.c @@ -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)