From b120c5f28876fd9efe032a6dbecebfaaff7dfd14 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 25 May 2010 15:23:55 -0400 Subject: torture: use tevent_ functions names instead of the legacy event_ ones --- source3/torture/torture.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index d5c2a567aa..888bcb1c86 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -6517,7 +6517,7 @@ static bool run_chain1(int dummy) } while (!done) { - event_loop_once(evt); + tevent_loop_once(evt); } torture_close_connection(cli1); @@ -6573,7 +6573,7 @@ static bool run_chain2(int dummy) } while (!done) { - event_loop_once(evt); + tevent_loop_once(evt); } torture_close_connection(cli1); @@ -8424,7 +8424,7 @@ static bool run_local_wbclient(int dummy) i = 0; while (i < nprocs * torture_numops) { - event_loop_once(ev); + tevent_loop_once(ev); } result = true; -- cgit