Added result codes ISC_R_FILENOTFOUND and ISC_R_FILEEXISTS

This commit is contained in:
Andreas Gustafsson
2000-05-09 23:10:34 +00:00
parent 47b26abe77
commit 6a13d6f3c6
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
163. [func] Added result codes ISC_R_FILENOTFOUND and ISC_R_FILEEXISTS.
162. [bug] Ensure proper range for arguments to ctype.h functions.
161. [cleanup] error in yyparse prototype that only HPUX caught.

View File

@@ -59,8 +59,10 @@
#define ISC_R_ALREADYRUNNING 35
#define ISC_R_IGNORE 36
#define ISC_R_MASKNONCONTIG 37
#define ISC_R_FILENOTFOUND 38
#define ISC_R_FILEEXISTS 39
#define ISC_R_NRESULTS 38 /* Number of results */
#define ISC_R_NRESULTS 40 /* Number of results */
ISC_LANG_BEGINDECLS

View File

@@ -73,7 +73,9 @@ static char *text[ISC_R_NRESULTS] = {
"unexpected error", /* 34 */
"already running", /* 35 */
"ignore", /* 36 */
"address mask not contiguous" /* 37 */
"address mask not contiguous", /* 37 */
"file not found", /* 38 */
"file already exists" /* 39 */
};
#define ISC_RESULT_RESULTSET 2