s3:smbd: use new function cluster_probe_ok()
[mat/samba.git] / source3 / smbd / server.c
index 3536f18cf4983aab738212e5e793fd110f3b242d..8173a6294d905d431f5e7893477009f27f6fdee5 100644 (file)
@@ -31,6 +31,7 @@
 #include "secrets.h"
 #include "memcache.h"
 #include "ctdbd_conn.h"
+#include "util_cluster.h"
 #include "printing/queue_process.h"
 #include "rpc_server/rpc_service_setup.h"
 #include "rpc_server/rpc_config.h"
@@ -1214,15 +1215,8 @@ extern void build_options(bool screen);
                exit(1);
        }
 
-       if (lp_clustering()) {
-               NTSTATUS status;
-
-               status = ctdbd_probe();
-               if (!NT_STATUS_IS_OK(status)) {
-                       DEBUG(0, ("clustering=yes but ctdbd connect failed: "
-                                 "%s\n", nt_errstr(status)));
-                       exit(1);
-               }
+       if (!cluster_probe_ok()) {
+               exit(1);
        }
 
        /* Init the security context and global current_user */