summaryrefslogtreecommitdiff
path: root/source3/lib/util_sock.c
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/util_sock.c
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/util_sock.c')
-rw-r--r--source3/lib/util_sock.c2
1 files changed, 1 insertions, 1 deletions
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;
}