1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-12 04:23:49 +03:00

r7911: task_terminate() is defined in the macosx headers, so change the name

to task_server_terminate()
This commit is contained in:
Andrew Tridgell
2005-06-25 23:53:14 +00:00
committed by Gerald (Jerry) Carter
parent d2e9e95ea2
commit a7447e25ac
7 changed files with 23 additions and 23 deletions

View File

@@ -120,13 +120,13 @@ static void cldapd_task_init(struct task_server *task)
NTSTATUS status;
if (iface_count() == 0) {
task_terminate(task, "cldapd: no network interfaces configured");
task_server_terminate(task, "cldapd: no network interfaces configured");
return;
}
cldapd = talloc(task, struct cldapd_server);
if (cldapd == NULL) {
task_terminate(task, "cldapd: out of memory");
task_server_terminate(task, "cldapd: out of memory");
return;
}
@@ -136,7 +136,7 @@ static void cldapd_task_init(struct task_server *task)
/* start listening on the configured network interfaces */
status = cldapd_startup_interfaces(cldapd);
if (!NT_STATUS_IS_OK(status)) {
task_terminate(task, "cldapd failed to setup interfaces");
task_server_terminate(task, "cldapd failed to setup interfaces");
return;
}
}