2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Generalize ISC_R_TASKSHUTTINGDOWN to ISC_R_SHUTTINGDOWN

This commit is contained in:
Michael Graff
1999-07-14 22:15:29 +00:00
parent bed86971bf
commit 0d3119d4d1
3 changed files with 3 additions and 3 deletions

View File

@@ -734,7 +734,7 @@ isc_task_onshutdown(isc_task_t *task, isc_taskaction_t action, void *arg) {
result = ISC_R_TASKDONE;
} else if (TASK_SHUTTINGDOWN(task)) {
disallowed = ISC_TRUE;
result = ISC_R_TASKSHUTTINGDOWN;
result = ISC_R_SHUTTINGDOWN;
} else
ENQUEUE(task->on_shutdown, event, link);
UNLOCK(&task->lock);