summaryrefslogtreecommitdiff
path: root/source4/winbind
diff options
context:
space:
mode:
Diffstat (limited to 'source4/winbind')
-rw-r--r--source4/winbind/idmap.c2
-rw-r--r--source4/winbind/idmap.h2
-rw-r--r--source4/winbind/wb_pam_auth.c2
-rw-r--r--source4/winbind/wb_server.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/source4/winbind/idmap.c b/source4/winbind/idmap.c
index 56ade3e8b1..f7be59136c 100644
--- a/source4/winbind/idmap.c
+++ b/source4/winbind/idmap.c
@@ -156,7 +156,7 @@ static struct dom_sid *idmap_msg_get_dom_sid(TALLOC_CTX *mem_ctx,
* \return allocated idmap_context on success, NULL on error
*/
struct idmap_context *idmap_init(TALLOC_CTX *mem_ctx,
- struct event_context *ev_ctx,
+ struct tevent_context *ev_ctx,
struct loadparm_context *lp_ctx)
{
struct idmap_context *idmap_ctx;
diff --git a/source4/winbind/idmap.h b/source4/winbind/idmap.h
index 13dbe0b921..7429466bed 100644
--- a/source4/winbind/idmap.h
+++ b/source4/winbind/idmap.h
@@ -31,7 +31,7 @@ struct idmap_context {
struct dom_sid *unix_users_sid;
};
-struct event_context;
+struct tevent_context;
#include "winbind/idmap_proto.h"
diff --git a/source4/winbind/wb_pam_auth.c b/source4/winbind/wb_pam_auth.c
index 5913f8d1bf..b2579fd6df 100644
--- a/source4/winbind/wb_pam_auth.c
+++ b/source4/winbind/wb_pam_auth.c
@@ -34,7 +34,7 @@
/* Oh, there is so much to keep an eye on when authenticating a user. Oh my! */
struct pam_auth_crap_state {
struct composite_context *ctx;
- struct event_context *event_ctx;
+ struct tevent_context *event_ctx;
struct loadparm_context *lp_ctx;
struct winbind_SamLogon *req;
diff --git a/source4/winbind/wb_server.h b/source4/winbind/wb_server.h
index 97d7d8151e..be79872e65 100644
--- a/source4/winbind/wb_server.h
+++ b/source4/winbind/wb_server.h
@@ -149,7 +149,7 @@ struct wbsrv_samba3_call {
struct wbsrv_connection *wbconn;
/* the backend should use this event context */
- struct event_context *event_ctx;
+ struct tevent_context *event_ctx;
/* here the backend can store stuff like composite_context's ... */
void *private_data;