aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-02-01 00:37:16 +0000
committerRoger Dingledine <arma@torproject.org>2005-02-01 00:37:16 +0000
commit2e97593d259d4b86f1bc2acca4be7a96895f8633 (patch)
tree80862d2194423d8567e586d970abb73fc356632d /src/or/circuitbuild.c
parente7e77d6d8e6bdbd77f74021917d612b514cc8fcf (diff)
downloadtor-2e97593d259d4b86f1bc2acca4be7a96895f8633.tar
tor-2e97593d259d4b86f1bc2acca4be7a96895f8633.tar.gz
define TOR_FRAGILE if you want tor to give you a core when
something goes wrong. this should only be used by people actively tracking bugs. svn:r3487
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r--src/or/circuitbuild.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 29937028d..b43fc62c5 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -764,6 +764,9 @@ static int new_route_len(double cw, uint8_t purpose, smartlist_t *routers) {
routelen = 4;
else {
log_fn(LOG_WARN,"Bug: unhandled purpose %d", purpose);
+#ifdef TOR_FRAGILE
+ tor_assert(0);
+#endif
return -1;
}
#endif
@@ -1078,6 +1081,9 @@ choose_good_exit_server(uint8_t purpose, routerlist_t *dir,
return r;
}
log_fn(LOG_WARN,"Bug: unhandled purpose %d", purpose);
+#ifdef TOR_FRAGILE
+ tor_assert(0);
+#endif
return NULL;
}