s3:ctdbd_conn: always implement ctdbd_probe()
authorMichael Adam <obnox@samba.org>
Thu, 17 Oct 2013 13:27:48 +0000 (15:27 +0200)
committerMichael Adam <obnox@samba.org>
Thu, 17 Oct 2013 13:51:40 +0000 (15:51 +0200)
Return STATUS_OK in the non-cluster build case.

Signed-off-by: Michael Adam <obnox@samba.org>
source3/lib/ctdbd_conn.c

index 2230c8f6c147fec36a6b159ac0774d0d1a350520..6ab4bbe70466e5e875fa18d8f27698fe51ec59a6 100644 (file)
@@ -1843,6 +1843,11 @@ NTSTATUS ctdbd_probe(void)
 
 #else
 
+NTSTATUS ctdbd_probe(void)
+{
+       return NT_STATUS_OK;
+}
+
 NTSTATUS ctdbd_messaging_send_blob(struct ctdbd_connection *conn,
                                   uint32_t dst_vnn, uint64_t dst_srvid,
                                   const uint8_t *buf, size_t buflen)