diff options
author | Volker Lendecke <vl@samba.org> | 2013-01-17 15:22:32 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-01-18 09:16:58 -0800 |
commit | a8fe624948f06e76aeb147ce0e47326f2d753f93 (patch) | |
tree | 4452b5a8351491d03ba185cb4c7d9015b6e31f2a /source3/torture | |
parent | 15596a8d9c5a578fa98e110350d15265c90e8f03 (diff) | |
download | samba-a8fe624948f06e76aeb147ce0e47326f2d753f93.tar.gz samba-a8fe624948f06e76aeb147ce0e47326f2d753f93.tar.bz2 samba-a8fe624948f06e76aeb147ce0e47326f2d753f93.zip |
smbtorture: Satisfy a linker dependency
Reviewed by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 9 |
1 files changed, 8 insertions, 1 deletions
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" |