mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-23 18:04:10 -05:00
add ISC_R_NOTFOUND
This commit is contained in:
parent
2cbb7279ed
commit
b2df2dafcd
2 changed files with 3 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ typedef unsigned int isc_result_t;
|
|||
#define ISC_R_CANCELED 20
|
||||
#define ISC_R_TASKNOSEND 21
|
||||
#define ISC_R_TASKSHUTTINGDOWN 22 /* task is shutting down */
|
||||
#define ISC_R_LASTENTRY 22 /* last entry in the list */
|
||||
#define ISC_R_NOTFOUND 23
|
||||
#define ISC_R_LASTENTRY 23 /* last entry in the list */
|
||||
|
||||
#define ISC_R_UNEXPECTED 0xFFFFFFFFL
|
||||
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ static char *text_table[ISC_R_LASTENTRY + 1] = {
|
|||
"operation canceled", /* 20 */
|
||||
"sending events is not allowed", /* 21 */
|
||||
"task is shutting down", /* 22 */
|
||||
"Not found", /* 23 */
|
||||
};
|
||||
|
||||
char *
|
||||
|
|
|
|||
Loading…
Reference in a new issue