from trunk: fix a typo in setting the global event base; reported by lance

svn:r954
This commit is contained in:
Niels Provos 2008-11-27 19:59:06 +00:00
parent e92d88c576
commit 1958f3a7ba
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Changes in 1.4.9-stable:
o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez
o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones.
o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn
o Fix a typo in setting the global event base; reported by lance.
Changes in 1.4.8-stable:
o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov.

View File

@ -475,7 +475,7 @@ event_base_loop(struct event_base *base, int flags)
/* clear time cache */
base->tv_cache.tv_sec = 0;
if (&base->sig.ev_signal_added)
if (base->sig.ev_signal_added)
evsignal_base = base;
done = 0;
while (!done) {