diff options
author | Christof Schmitt <cs@samba.org> | 2018-08-21 11:09:16 -0700 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2018-09-07 17:26:17 +0200 |
commit | cc76aaeb6234698bca5d6520bb14a9306c9131cd (patch) | |
tree | 114c34bce81744946c480bc78b8321cd51fd8612 /source3/lib/dbwrap/dbwrap_open.c | |
parent | ae7db3e543d412864fafb0d0303c2219ce344526 (diff) | |
download | samba-cc76aaeb6234698bca5d6520bb14a9306c9131cd.tar.gz |
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 <cs@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/lib/dbwrap/dbwrap_open.c')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |