summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/service.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/smbd/service.c b/source4/smbd/service.c
index e0ec3cf07e..12aa43132c 100644
--- a/source4/smbd/service.c
+++ b/source4/smbd/service.c
@@ -349,6 +349,12 @@ const struct server_service_ops *server_service_byname(const char *name)
if (strcmp("ldap",name)==0) {
return ldapsrv_get_ops();
}
+ if (strcmp("winbind",name)==0) {
+ return winbind_get_ops();
+ }
+ if (strcmp("winbind_task",name)==0) {
+ return winbind_task_get_ops();
+ }
return NULL;
}