From: Michael Adam Date: Thu, 17 Oct 2013 13:27:48 +0000 (+0200) Subject: s3:ctdbd_conn: always implement ctdbd_probe() X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=de1d363aacaa5bfa8dd54c8b7e1fc0770efb657e s3:ctdbd_conn: always implement ctdbd_probe() Return STATUS_OK in the non-cluster build case. Signed-off-by: Michael Adam --- diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 2230c8f6c14..6ab4bbe7046 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -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)