diff options
author | George Kadianakis <desnacked@riseup.net> | 2014-03-10 22:52:07 +0000 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2014-03-10 22:52:07 +0000 |
commit | 1c475eb018989f090c1423c25dc2f09380b10693 (patch) | |
tree | 07a71f4cc5aad46333bfdaf5b851204f231b9b78 /src/test/test_extorport.c | |
parent | 0b7a66fac76445087651a1dd2d171bf043c9f345 (diff) | |
download | tor-1c475eb018989f090c1423c25dc2f09380b10693.tar.gz tor-1c475eb018989f090c1423c25dc2f09380b10693.zip |
Throw control port warning if we failed to connect to all our bridges.
Diffstat (limited to 'src/test/test_extorport.c')
-rw-r--r-- | src/test/test_extorport.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/test_extorport.c b/src/test/test_extorport.c index 7e38ba57dc..b34f5e38de 100644 --- a/src/test/test_extorport.c +++ b/src/test/test_extorport.c @@ -363,10 +363,12 @@ test_ext_or_cookie_auth_testvec(void *arg) } static void -ignore_bootstrap_problem(const char *warn, int reason) +ignore_bootstrap_problem(const char *warn, int reason, + const or_connection_t *conn) { (void)warn; (void)reason; + (void)conn; } static int is_reading = 1; |