summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-06-04 03:24:53 -0400
committerNick Mathewson <nickm@torproject.org>2009-06-12 14:27:53 -0400
commit33b1d714e779a714c2d55e5da09d0e3c682f273a (patch)
tree181298ff8014f9463d17f14d52d30150336410a6 /src/or
parentc0af3cdfb6816659031fed5a1b8feec5d457b608 (diff)
downloadtor-33b1d714e779a714c2d55e5da09d0e3c682f273a.tar.gz
tor-33b1d714e779a714c2d55e5da09d0e3c682f273a.zip
Make Tor compile with Libevent 1.0 again.
Diffstat (limited to 'src/or')
-rw-r--r--src/or/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 1b716f93a5..c808845192 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -395,7 +395,7 @@ connection_start_reading_from_linked_conn(connection_t *conn)
* the end of its run through the current connections and lets us
* activate read events for linked connections. */
struct timeval tv = { 0, 0 };
- event_base_loopexit(tor_libevent_get_base(), &tv);
+ tor_event_base_loopexit(tor_libevent_get_base(), &tv);
}
} else {
tor_assert(smartlist_isin(active_linked_connection_lst, conn));