mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 02:01:32 -04:00
add ISC_R_ENTROPY
This commit is contained in:
parent
4e47460645
commit
d10733a5a3
2 changed files with 4 additions and 2 deletions
|
|
@ -63,8 +63,9 @@
|
|||
#define ISC_R_FILEEXISTS 39
|
||||
#define ISC_R_NOTCONNECTED 40 /* socket is not connected */
|
||||
#define ISC_R_RANGE 41 /* out of range */
|
||||
#define ISC_R_ENTROPY 42 /* out of entropy */
|
||||
|
||||
#define ISC_R_NRESULTS 42 /* Number of results */
|
||||
#define ISC_R_NRESULTS 43 /* Number of results */
|
||||
|
||||
ISC_LANG_BEGINDECLS
|
||||
|
||||
|
|
|
|||
|
|
@ -77,7 +77,8 @@ static const char *text[ISC_R_NRESULTS] = {
|
|||
"file not found", /* 38 */
|
||||
"file already exists", /* 39 */
|
||||
"socket is not connected", /* 40 */
|
||||
"out of range" /* 41 */
|
||||
"out of range", /* 41 */
|
||||
"out of entropy" /* 42 */
|
||||
};
|
||||
|
||||
#define ISC_RESULT_RESULTSET 2
|
||||
|
|
|
|||
Loading…
Reference in a new issue