summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:10:34 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:47 +0100
commitf3915cf0ec9ac51f541cafcb367221a3dac3aec8 (patch)
tree3ca027c697d25ed38d54d68a91b878184dbf5d18 /source3/lib
parent3cad605ee9454ae6000349340073124a8df80896 (diff)
downloadsamba-f3915cf0ec9ac51f541cafcb367221a3dac3aec8.tar.gz
samba-f3915cf0ec9ac51f541cafcb367221a3dac3aec8.tar.bz2
samba-f3915cf0ec9ac51f541cafcb367221a3dac3aec8.zip
s3:lib: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/g_lock.c4
-rw-r--r--source3/lib/messages_ctdbd.c4
-rw-r--r--source3/lib/msg_channel.c2
-rw-r--r--source3/lib/tldap.c10
-rw-r--r--source3/lib/tldap_util.c2
-rw-r--r--source3/lib/util_sock.c2
6 files changed, 12 insertions, 12 deletions
diff --git a/source3/lib/g_lock.c b/source3/lib/g_lock.c
index fbd90225f0..8c7a6c203b 100644
--- a/source3/lib/g_lock.c
+++ b/source3/lib/g_lock.c
@@ -315,7 +315,7 @@ NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name,
struct timeval end;
NTSTATUS status = NT_STATUS_NO_MEMORY;
- ev = tevent_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}
@@ -513,7 +513,7 @@ static bool g_lock_init_all(TALLOC_CTX *mem_ctx,
struct messaging_context *msg = NULL;
struct g_lock_ctx *g_ctx = NULL;
- ev = tevent_context_init(mem_ctx);
+ ev = samba_tevent_context_init(mem_ctx);
if (ev == NULL) {
d_fprintf(stderr, "ERROR: could not init event context\n");
goto fail;
diff --git a/source3/lib/messages_ctdbd.c b/source3/lib/messages_ctdbd.c
index 7899477ba0..949fb27280 100644
--- a/source3/lib/messages_ctdbd.c
+++ b/source3/lib/messages_ctdbd.c
@@ -68,9 +68,9 @@ struct ctdbd_connection *messaging_ctdbd_connection(void)
struct event_context *ev;
struct messaging_context *msg;
- ev = event_context_init(NULL);
+ ev = samba_tevent_context_init(NULL);
if (!ev) {
- DEBUG(0,("event_context_init failed\n"));
+ DEBUG(0,("samba_tevent_context_init failed\n"));
}
msg = messaging_init(NULL, ev);
diff --git a/source3/lib/msg_channel.c b/source3/lib/msg_channel.c
index c68c11ec2f..537b162737 100644
--- a/source3/lib/msg_channel.c
+++ b/source3/lib/msg_channel.c
@@ -138,7 +138,7 @@ int msg_channel_init(TALLOC_CTX *mem_ctx, struct messaging_context *msg,
int err = ENOMEM;
bool ok;
- ev = tevent_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}
diff --git a/source3/lib/tldap.c b/source3/lib/tldap.c
index 765580fd81..8e91234422 100644
--- a/source3/lib/tldap.c
+++ b/source3/lib/tldap.c
@@ -901,7 +901,7 @@ int tldap_sasl_bind(struct tldap_context *ld,
struct tevent_req *req;
int result;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
result = TLDAP_NO_MEMORY;
goto fail;
@@ -1824,7 +1824,7 @@ int tldap_search(struct tldap_context *ld,
state.mem_ctx = mem_ctx;
state.rc = TLDAP_SUCCESS;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
state.rc = TLDAP_NO_MEMORY;
goto fail;
@@ -2141,7 +2141,7 @@ int tldap_add(struct tldap_context *ld, const char *dn,
struct tevent_req *req;
int result;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
result = TLDAP_NO_MEMORY;
goto fail;
@@ -2241,7 +2241,7 @@ int tldap_modify(struct tldap_context *ld, const char *dn,
struct tevent_req *req;
int result;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
result = TLDAP_NO_MEMORY;
goto fail;
@@ -2317,7 +2317,7 @@ int tldap_delete(struct tldap_context *ld, const char *dn,
struct tevent_req *req;
int result;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
result = TLDAP_NO_MEMORY;
goto fail;
diff --git a/source3/lib/tldap_util.c b/source3/lib/tldap_util.c
index 41d89815d0..1ffb264a13 100644
--- a/source3/lib/tldap_util.c
+++ b/source3/lib/tldap_util.c
@@ -514,7 +514,7 @@ int tldap_fetch_rootdse(struct tldap_context *ld)
struct tevent_req *req;
int result;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
result = TLDAP_NO_MEMORY;
goto fail;
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index e45efea69b..679af9ccb4 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -695,7 +695,7 @@ NTSTATUS open_socket_out(const struct sockaddr_storage *pss, uint16_t port,
struct tevent_req *req;
NTSTATUS status = NT_STATUS_NO_MEMORY;
- ev = event_context_init(frame);
+ ev = samba_tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}