Added result codes ISC_R_FILENOTFOUND and ISC_R_FILEEXISTS
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user