summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-02-09 03:09:52 +0000
committerRoger Dingledine <arma@torproject.org>2006-02-09 03:09:52 +0000
commitfd0fcdf17c8025fa71ab9e5dd0ee222d68923079 (patch)
tree41c82158103bdce8c0fc202f0e2b985279d394a3
parent28f3765b5aa022da0efa0273ca924e7e5a470481 (diff)
downloadtor-fd0fcdf17c8025fa71ab9e5dd0ee222d68923079.tar.gz
tor-fd0fcdf17c8025fa71ab9e5dd0ee222d68923079.zip
stop calling it a "libevent poll" -- the word "poll" has
other meaning in this context that are confusing. svn:r5936
-rw-r--r--src/or/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 729cc9aed0..f3d4b1fb1b 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1143,10 +1143,10 @@ do_main_loop(void)
/* let the program survive things like ^z */
if (e != EINTR && !ERRNO_IS_EINPROGRESS(e)) {
#ifdef HAVE_EVENT_GET_METHOD
- err(LD_NET,"libevent poll with %s failed: %s [%d]",
+ err(LD_NET,"libevent call with %s failed: %s [%d]",
event_get_method(), tor_socket_strerror(e), e);
#else
- err(LD_NET,"libevent poll failed: %s [%d]",
+ err(LD_NET,"libevent call failed: %s [%d]",
tor_socket_strerror(e), e);
#endif
return -1;
@@ -1158,8 +1158,8 @@ do_main_loop(void)
#endif
} else {
if (ERRNO_IS_EINPROGRESS(e))
- warn(LD_BUG,"libevent poll returned EINPROGRESS? Please report.");
- debug(LD_NET,"event poll interrupted.");
+ warn(LD_BUG,"libevent call returned EINPROGRESS? Please report.");
+ debug(LD_NET,"libevent call interrupted.");
/* You can't trust the results of this poll(). Go back to the
* top of the big for loop. */
continue;