mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
isc_task_create() API change
This commit is contained in:
@@ -1112,8 +1112,7 @@ client_create(ns_clientmgr_t *manager, ns_client_t **clientp)
|
||||
return (ISC_R_NOMEMORY);
|
||||
|
||||
client->task = NULL;
|
||||
result = isc_task_create(manager->taskmgr, manager->mctx, 0,
|
||||
&client->task);
|
||||
result = isc_task_create(manager->taskmgr, 0, &client->task);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto cleanup_client;
|
||||
isc_task_setname(client->task, "client", client);
|
||||
|
Reference in New Issue
Block a user