aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/testbed/testbed_api_testbed.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testbed/testbed_api_testbed.c b/src/testbed/testbed_api_testbed.c
index 85519c1b9..bceda19a3 100644
--- a/src/testbed/testbed_api_testbed.c
+++ b/src/testbed/testbed_api_testbed.c
@@ -627,6 +627,15 @@ event_cb (void *cls, const struct GNUNET_TESTBED_EventInformation *event)
627 GNUNET_CONTAINER_DLL_remove (rc->dll_op_head, rc->dll_op_tail, dll_op); 627 GNUNET_CONTAINER_DLL_remove (rc->dll_op_head, rc->dll_op_tail, dll_op);
628 GNUNET_TESTBED_operation_done (dll_op->op); 628 GNUNET_TESTBED_operation_done (dll_op->op);
629 GNUNET_free (dll_op); 629 GNUNET_free (dll_op);
630 if ( (GNUNET_NO == rc->shutdown)
631 && (NULL != event->details.operation_finished.emsg) )
632 {
633 LOG (GNUNET_ERROR_TYPE_ERROR, "A operation has failed with error: %s\n",
634 event->details.operation_finished.emsg);
635 shutdown_now (rc);
636 return;
637 }
638 GNUNET_assert (GNUNET_YES == rc->shutdown);
630 switch (rc->state) 639 switch (rc->state)
631 { 640 {
632 case RC_LINKED: 641 case RC_LINKED: