diff options
author | Roger Dingledine <arma@torproject.org> | 2004-04-19 21:25:48 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-04-19 21:25:48 +0000 |
commit | a3200f79cd85fad81f9f5e0c05bc2d8b4b992f25 (patch) | |
tree | ef4237812d9fe810b942f30220535895463b1f18 /src/or | |
parent | 5cfec379ae9b299fb652c8ad111581048e85ef3c (diff) | |
download | tor-a3200f79cd85fad81f9f5e0c05bc2d8b4b992f25.tar tor-a3200f79cd85fad81f9f5e0c05bc2d8b4b992f25.tar.gz |
the socketpair bug is no longer a bug
now it is a documented behavior
svn:r1674
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index c5fdd47fa..4f582890f 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1061,7 +1061,7 @@ int connection_ap_make_bridge(char *address, uint16_t port) { log_fn(LOG_INFO,"Making AP bridge to %s:%d ...",address,port); if(tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) { - log(LOG_WARN, "Couldn't construct socketpair (we're still working on this bug): %s", strerror(errno)); + log(LOG_WARN, "Couldn't construct socketpair (%s). Network down? Delaying.", strerror(errno)); return -1; } |