s3:lib/server_contexts: Rename variables
authorChristof Schmitt <cs@samba.org>
Tue, 21 Aug 2018 18:18:08 +0000 (11:18 -0700)
committerAndreas Schneider <asn@cryptomilk.org>
Fri, 7 Sep 2018 15:26:17 +0000 (17:26 +0200)
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/lib/server_contexts.c

index 2d92ad9f69c1327f799e404b8afcced8147ad8a0..03ab8e4fd4833daeb6ea6e2474349a7c541391b4 100644 (file)
@@ -1,6 +1,6 @@
 /*
    Unix SMB/CIFS implementation.
-   Common server globals
+   Global contexts
 
    Copyright (C) Simo Sorce <idra@samba.org> 2010
 
 #include "includes.h"
 #include "messages.h"
 
-static struct tevent_context *server_event_ctx = NULL;
+static struct tevent_context *global_event_ctx = NULL;
 
 struct tevent_context *global_event_context(void)
 {
-       if (!server_event_ctx) {
+       if (!global_event_ctx) {
                /*
                 * Note we MUST use the NULL context here, not the
                 * autofree context, to avoid side effects in forked
                 * children exiting.
                 */
-               server_event_ctx = samba_tevent_context_init(NULL);
+               global_event_ctx = samba_tevent_context_init(NULL);
        }
-       if (!server_event_ctx) {
-               smb_panic("Could not init server's event context");
+       if (!global_event_ctx) {
+               smb_panic("Could not init global event context");
        }
-       return server_event_ctx;
+       return global_event_ctx;
 }
 
 void global_event_context_free(void)
 {
-       TALLOC_FREE(server_event_ctx);
+       TALLOC_FREE(global_event_ctx);
 }
 
-static struct messaging_context *server_msg_ctx = NULL;
+static struct messaging_context *global_msg_ctx = NULL;
 
 struct messaging_context *global_messaging_context(void)
 {
-       if (server_msg_ctx == NULL) {
+       if (global_msg_ctx == NULL) {
                /*
                 * Note we MUST use the NULL context here, not the
                 * autofree context, to avoid side effects in forked
                 * children exiting.
                 */
-               server_msg_ctx = messaging_init(NULL,
+               global_msg_ctx = messaging_init(NULL,
                                                global_event_context());
        }
-       return server_msg_ctx;
+       return global_msg_ctx;
 }
 
 void global_messaging_context_free(void)
 {
-       TALLOC_FREE(server_msg_ctx);
+       TALLOC_FREE(global_msg_ctx);
 }