From a8fe624948f06e76aeb147ce0e47326f2d753f93 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 17 Jan 2013 15:22:32 +0100 Subject: smbtorture: Satisfy a linker dependency Reviewed by: Jeremy Allison --- source3/torture/torture.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index d31c907d22..799c911c6d 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -9153,7 +9153,14 @@ static struct { { "LOCAL-DBWRAP-CTDB", run_local_dbwrap_ctdb, 0 }, {NULL, NULL, 0}}; - +/* + * dummy function to satisfy linker dependency + */ +struct tevent_context *winbind_event_context(void); +struct tevent_context *winbind_event_context(void) +{ + return NULL; +} /**************************************************************************** run a specified test or "ALL" -- cgit