summaryrefslogtreecommitdiffstats
path: root/server/infopipe
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2009-02-25 16:40:17 -0500
committerSimo Sorce <ssorce@redhat.com>2009-02-26 09:13:20 -0500
commitc9f6d2795fde2f9bf80277d425df2b44bc860226 (patch)
tree301e1217eb5fda73351e9c7fb2f73048853942df /server/infopipe
parent03fa4034a6a74a326e5340dae42d85eea4516b3c (diff)
downloadsssd-c9f6d2795fde2f9bf80277d425df2b44bc860226.tar.gz
sssd-c9f6d2795fde2f9bf80277d425df2b44bc860226.tar.xz
sssd-c9f6d2795fde2f9bf80277d425df2b44bc860226.zip
Rebase the code to use talloc, tdb, tevent, ldb as external
dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
Diffstat (limited to 'server/infopipe')
-rw-r--r--server/infopipe/infopipe.c2
-rw-r--r--server/infopipe/infopipe_private.h2
-rw-r--r--server/infopipe/sysbus.c2
-rw-r--r--server/infopipe/sysbus.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/server/infopipe/infopipe.c b/server/infopipe/infopipe.c
index fbc031467..4b1eb9204 100644
--- a/server/infopipe/infopipe.c
+++ b/server/infopipe/infopipe.c
@@ -246,7 +246,7 @@ done:
}
static int infp_process_init(TALLOC_CTX *mem_ctx,
- struct event_context *ev,
+ struct tevent_context *ev,
struct confdb_ctx *cdb)
{
struct infp_ctx *infp_ctx;
diff --git a/server/infopipe/infopipe_private.h b/server/infopipe/infopipe_private.h
index 1ceb426f0..8ea2586bf 100644
--- a/server/infopipe/infopipe_private.h
+++ b/server/infopipe/infopipe_private.h
@@ -23,7 +23,7 @@
#define INFOPIPE_PRIVATE_H_
struct infp_ctx {
- struct event_context *ev;
+ struct tevent_context *ev;
struct confdb_ctx *cdb;
struct service_sbus_ctx *ss_ctx;
struct sysbus_ctx *sysbus;
diff --git a/server/infopipe/sysbus.c b/server/infopipe/sysbus.c
index 5c272e664..6ba1bb72d 100644
--- a/server/infopipe/sysbus.c
+++ b/server/infopipe/sysbus.c
@@ -88,7 +88,7 @@ done:
}
int sysbus_init(TALLOC_CTX *mem_ctx, struct sysbus_ctx **sysbus,
- struct event_context *ev, const char *dbus_name,
+ struct tevent_context *ev, const char *dbus_name,
const char *interface, const char *path,
struct sbus_method *methods,
sbus_msg_handler_fn introspect_method)
diff --git a/server/infopipe/sysbus.h b/server/infopipe/sysbus.h
index f591365eb..2bed23a4e 100644
--- a/server/infopipe/sysbus.h
+++ b/server/infopipe/sysbus.h
@@ -25,7 +25,7 @@
struct sysbus_ctx;
int sysbus_init(TALLOC_CTX *mem_ctx, struct sysbus_ctx **sysbus,
- struct event_context *ev, const char *dbus_name,
+ struct tevent_context *ev, const char *dbus_name,
const char *interface, const char *path,
struct sbus_method *methods,
sbus_msg_handler_fn introspect_method);