From d6b0e99380789096d79fe4e00042b78f9207fe14 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 10 May 1999 22:49:22 +0000 Subject: [PATCH] change TASKSHUTDOWN to TASKDONE --- lib/isc/include/isc/result.h | 2 +- lib/isc/result.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/include/isc/result.h b/lib/isc/include/isc/result.h index c53de7729d..66ee12b381 100644 --- a/lib/isc/include/isc/result.h +++ b/lib/isc/include/isc/result.h @@ -40,7 +40,7 @@ typedef unsigned int isc_result_t; #define ISC_R_NORESOURCES 13 /* not enough resources */ #define ISC_R_EOF 14 /* end of file */ #define ISC_R_BOUND 15 /* already bound */ -#define ISC_R_TASKSHUTDOWN 16 /* task was shut down */ +#define ISC_R_TASKDONE 16 /* task is done */ #define ISC_R_LOCKBUSY 17 #define ISC_R_EXISTS 18 #define ISC_R_NOSPACE 19 /* ran out of space */ diff --git a/lib/isc/result.c b/lib/isc/result.c index 66c0069d64..5c4c67186c 100644 --- a/lib/isc/result.c +++ b/lib/isc/result.c @@ -36,7 +36,7 @@ static char *text_table[ISC_R_LASTENTRY + 1] = { "not enough free resources", /* 13 */ "end of file", /* 14 */ "socket already bound", /* 15 */ - "task is shut down", /* 16 */ + "task is done", /* 16 */ "lock busy", /* 17 */ "already exists", /* 18 */ "ran out of space", /* 19 */