From 2e97593d259d4b86f1bc2acca4be7a96895f8633 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 1 Feb 2005 00:37:16 +0000 Subject: 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 --- src/or/circuitbuild.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/or/circuitbuild.c') 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; } -- cgit v1.2.3