diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-28 21:14:05 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-28 21:14:05 +0000 |
commit | 2ba9901cb4fcde3a999dd1e8316b39f60cc0ef0e (patch) | |
tree | a7860b4e263ed6735ae660d2789c2bd96cbfffd6 /src/or/main.c | |
parent | e6a2e0352464d2b98ae8427781b8f8b2ff0f4527 (diff) | |
download | tor-2ba9901cb4fcde3a999dd1e8316b39f60cc0ef0e.tar.gz tor-2ba9901cb4fcde3a999dd1e8316b39f60cc0ef0e.zip |
oh, i forgot to enable the find-munged-conn function
svn:r1357
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index e86f20b220..3afefcb3e3 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -267,6 +267,9 @@ static void conn_close_if_marked(int i) { } } connection_remove(conn); + if(conn->type == CONN_TYPE_EXIT) { + assert_connection_edge_not_dns_pending(conn); + } connection_free(conn); if(i<nfds) { /* we just replaced the one at i with a new one. process it too. */ |