summaryrefslogtreecommitdiff
path: root/source4/winbind/wb_server.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-06-25 23:53:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:18:48 -0500
commitb3e493470f3465cfe5cfa958b019ac8cfb8f12f2 (patch)
treecfde60cc60782142cfd7caa39692e1f92bafdffe /source4/winbind/wb_server.c
parentfbb0ecd418286499d5e251893f46a7a4352d719c (diff)
downloadsamba-b3e493470f3465cfe5cfa958b019ac8cfb8f12f2.tar.gz
samba-b3e493470f3465cfe5cfa958b019ac8cfb8f12f2.tar.bz2
samba-b3e493470f3465cfe5cfa958b019ac8cfb8f12f2.zip
r7911: task_terminate() is defined in the macosx headers, so change the name
to task_server_terminate() (This used to be commit a7447e25ac203f0ee09ffdf72df1094eb70e7c0c)
Diffstat (limited to 'source4/winbind/wb_server.c')
-rw-r--r--source4/winbind/wb_server.c6
1 files changed, 3 insertions, 3 deletions
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;
}
}