aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_connection.c')
-rw-r--r--src/util/test_connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/test_connection.c b/src/util/test_connection.c
index cb69f40..4568f8e 100644
--- a/src/util/test_connection.c
+++ b/src/util/test_connection.c
@@ -102,7 +102,8 @@ receive_check (void *cls, const void *buf, size_t available,
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receive closes accepted socket\n");
#endif
*ok = 0;
- GNUNET_CONNECTION_destroy (asock, GNUNET_YES);
+ GNUNET_CONNECTION_destroy (asock);
+ GNUNET_CONNECTION_destroy (csock);
}
}
@@ -119,7 +120,7 @@ run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
#if VERBOSE
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys listen socket\n");
#endif
- GNUNET_CONNECTION_destroy (lsock, GNUNET_YES);
+ GNUNET_CONNECTION_destroy (lsock);
#if VERBOSE
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Test asks to receive on accepted socket\n");
@@ -142,7 +143,6 @@ make_hello (void *cls, size_t size, void *buf)
#if VERBOSE
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys client socket\n");
#endif
- GNUNET_CONNECTION_destroy (csock, GNUNET_YES);
return 12;
}