diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-11-21 08:36:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-08 14:47:19 -0500 |
commit | a48ba072a98a5d946079e2e0c15c84bb8c9d1a19 (patch) | |
tree | e3eb3b1c272da6fb2d78f8decfd668160f032393 /src/test/test_extorport.c | |
parent | b0cc9856ee560865d2668afbff20e8b77986e4ee (diff) | |
download | tor-a48ba072a98a5d946079e2e0c15c84bb8c9d1a19.tar.gz tor-a48ba072a98a5d946079e2e0c15c84bb8c9d1a19.zip |
Rename connection_free_ to connection_free_minimal.
Diffstat (limited to 'src/test/test_extorport.c')
-rw-r--r-- | src/test/test_extorport.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/test_extorport.c b/src/test/test_extorport.c index e18deb2700..cadef257f1 100644 --- a/src/test/test_extorport.c +++ b/src/test/test_extorport.c @@ -58,11 +58,11 @@ test_ext_or_id_map(void *arg) done: if (c1) - connection_free_(TO_CONN(c1)); + connection_free_minimal(TO_CONN(c1)); if (c2) - connection_free_(TO_CONN(c2)); + connection_free_minimal(TO_CONN(c2)); if (c3) - connection_free_(TO_CONN(c3)); + connection_free_minimal(TO_CONN(c3)); tor_free(idp); tor_free(idp2); connection_or_clear_ext_or_id_map(); @@ -145,7 +145,7 @@ test_ext_or_write_command(void *arg) done: if (c1) - connection_free_(TO_CONN(c1)); + connection_free_minimal(TO_CONN(c1)); tor_free(cp); tor_free(buf); UNMOCK(connection_write_to_buf_impl_); @@ -591,7 +591,7 @@ test_ext_or_handshake(void *arg) UNMOCK(connection_write_to_buf_impl_); UNMOCK(crypto_rand); if (conn) - connection_free_(TO_CONN(conn)); + connection_free_minimal(TO_CONN(conn)); #undef CONTAINS #undef WRITE } |