summaryrefslogtreecommitdiff
path: root/source3/smbd/server.c
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2018-08-21 11:06:16 -0700
committerAndreas Schneider <asn@cryptomilk.org>2018-09-07 17:26:17 +0200
commitae7db3e543d412864fafb0d0303c2219ce344526 (patch)
tree3963543ad7e047dbfc292022f0b7574804e45642 /source3/smbd/server.c
parent94852e3544bf2cace3ddba8b9c89d986d77fdab5 (diff)
downloadsamba-ae7db3e543d412864fafb0d0303c2219ce344526.tar.gz
s3: Rename server_event_context() to global_event_context()
This reflects that the event 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_event_context/global_event_context/' Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r--source3/smbd/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index b73ac2bb731..a9201f8424c 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -1776,7 +1776,7 @@ extern void build_options(bool screen);
* initialized before the messaging context, cause the messaging
* context holds an event context.
*/
- ev_ctx = server_event_context();
+ ev_ctx = global_event_context();
if (ev_ctx == NULL) {
exit(1);
}