From cc76aaeb6234698bca5d6520bb14a9306c9131cd Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Tue, 21 Aug 2018 11:09:16 -0700 Subject: s3: Rename server_messaging_context() to global_messaging_context() This reflects that the messaging context is also used outside of the server processes. The command used for the rename: find . -name '*.[hc]' -print0 | xargs -0 sed -i 's/server_messaging_context/global_messaging_context/' Signed-off-by: Christof Schmitt Reviewed-by: Ralph Boehme --- source3/lib/dbwrap/dbwrap_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/dbwrap/dbwrap_open.c') diff --git a/source3/lib/dbwrap/dbwrap_open.c b/source3/lib/dbwrap/dbwrap_open.c index e144d9881bb..33bf9696998 100644 --- a/source3/lib/dbwrap/dbwrap_open.c +++ b/source3/lib/dbwrap/dbwrap_open.c @@ -146,7 +146,7 @@ struct db_context *db_open(TALLOC_CTX *mem_ctx, errno = EIO; return NULL; } - msg_ctx = server_messaging_context(); + msg_ctx = global_messaging_context(); result = db_open_ctdb(mem_ctx, msg_ctx, base, hash_size, -- cgit v1.2.1