summaryrefslogtreecommitdiff
path: root/source4/winbind/winbindd.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2015-06-12 14:41:20 +1200
committerJeremy Allison <jra@samba.org>2015-06-24 22:34:57 +0200
commitc31c30043bdb0b3736f81c4b391ec96f236bc227 (patch)
tree0fe80b6313473a5d93cde9a9dadce0d8d524a3d8 /source4/winbind/winbindd.c
parent45b7992428f646b8586974e1d86e3cdad869b059 (diff)
downloadsamba-c31c30043bdb0b3736f81c4b391ec96f236bc227.tar.gz
s4-winbindd: Remove the winbind rewrite from the samba4 effort
This winbind implementation is undermaintained, out of date and not the future of even the AD DC, let alone any other purpose. Removing it will reduce our security and bug exposure on this off by default subsystem Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Wed Jun 24 22:34:57 CEST 2015 on sn-devel-104
Diffstat (limited to 'source4/winbind/winbindd.c')
-rw-r--r--source4/winbind/winbindd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/winbind/winbindd.c b/source4/winbind/winbindd.c
index d8b79eeb73a..80abd7a3105 100644
--- a/source4/winbind/winbindd.c
+++ b/source4/winbind/winbindd.c
@@ -90,5 +90,9 @@ NTSTATUS server_service_winbindd_init(void);
NTSTATUS server_service_winbindd_init(void)
{
- return register_server_service("winbindd", winbindd_task_init);
+ NTSTATUS status = register_server_service("winbindd", winbindd_task_init);
+ if (!NT_STATUS_IS_OK(status)) {
+ return status;
+ }
+ return register_server_service("winbind", winbindd_task_init);
}