]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add key conflict result code
authorTed Lemon <source@isc.org>
Tue, 28 Sep 1999 22:57:14 +0000 (22:57 +0000)
committerTed Lemon <source@isc.org>
Tue, 28 Sep 1999 22:57:14 +0000 (22:57 +0000)
includes/isc/result.h
omapip/result.c

index 8ea51043ffbdab17b197babf09cde9ccf56d5cf6..bd0f1282d67d087b40dad92db3d51580ba051117 100644 (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,
index 246f4346404487feef45a303b1bd845c709c2a88..abf29f3a2544bab53830a0bbc02762abcc3f72d2 100644 (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)