From 4a1895eb9921ad533910d08823c2814c470875fd Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 23 Dec 2011 14:45:45 +0100 Subject: [PATCH] s3:lib/ctdbd_conn: try ctdbd_init_connection() as root ctdbd_traverse is only called if the main db_context is already open. So if we could get to information via dbwrap_fetch, we should also be able to traverse. metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Fri Dec 23 18:19:14 CET 2011 on sn-devel-104 --- source3/lib/ctdbd_conn.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 9d4af18ac59..9d2b544928e 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -1537,7 +1537,9 @@ NTSTATUS ctdbd_traverse(uint32 db_id, int cstatus; struct ctdbd_traverse_state state; + become_root(); status = ctdbd_init_connection(NULL, &conn); + unbecome_root(); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("ctdbd_init_connection failed: %s\n", nt_errstr(status))); -- 2.34.1