From b3e493470f3465cfe5cfa958b019ac8cfb8f12f2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 25 Jun 2005 23:53:14 +0000 Subject: r7911: task_terminate() is defined in the macosx headers, so change the name to task_server_terminate() (This used to be commit a7447e25ac203f0ee09ffdf72df1094eb70e7c0c) --- source4/winbind/wb_server.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/winbind') diff --git a/source4/winbind/wb_server.c b/source4/winbind/wb_server.c index 121aeb5a3a..375c88c72a 100644 --- a/source4/winbind/wb_server.c +++ b/source4/winbind/wb_server.c @@ -150,7 +150,7 @@ static void winbind_task_init(struct task_server *task) stream_setup_socket() call. */ model_ops = process_model_byname("single"); if (!model_ops) { - task_terminate(task, "Can't find 'single' process model_ops"); + task_server_terminate(task, "Can't find 'single' process model_ops"); return; } @@ -164,7 +164,7 @@ static void winbind_task_init(struct task_server *task) if (!NT_STATUS_IS_OK(status)) { DEBUG(0,("service_setup_stream_socket(path=%s) failed - %s\n", WINBINDD_ECHO_SOCKET, nt_errstr(status))); - task_terminate(task, "winbind Failed to find to ECHO unix socket"); + task_server_terminate(task, "winbind Failed to find to ECHO unix socket"); return; } @@ -175,7 +175,7 @@ static void winbind_task_init(struct task_server *task) if (!NT_STATUS_IS_OK(status)) { DEBUG(0,("service_setup_stream_socket(address=%s,port=%u) failed - %s\n", WINBINDD_ECHO_ADDR, port, nt_errstr(status))); - task_terminate(task, "winbind Failed to find to ECHO tcp socket"); + task_server_terminate(task, "winbind Failed to find to ECHO tcp socket"); return; } } -- cgit