WiP
[oweals/gnunet.git] / src / util / test_connection_transmit_cancel.c
index b801e1b685b29eec27b255bdb368d4289305ba6c..72e27243b20a95546548fa6ce004e4e6d585f540 100644 (file)
@@ -50,13 +50,14 @@ task_transmit_cancel (void *cls,
   struct GNUNET_CONNECTION_TransmitHandle *th;
   struct GNUNET_CONNECTION_Handle *csock;
 
-  csock = GNUNET_CONNECTION_create_from_connect (tc->sched, cfg,
-                                                 "localhost", PORT, 1024);
+  csock = GNUNET_CONNECTION_create_from_connect (cfg,
+                                                 "localhost", PORT);
   GNUNET_assert (csock != NULL);
   th = GNUNET_CONNECTION_notify_transmit_ready (csock,
                                                 12,
                                                 GNUNET_TIME_UNIT_MINUTES,
                                                 &not_run, cls);
+  GNUNET_assert (NULL != th);
   GNUNET_CONNECTION_notify_transmit_ready_cancel (th);
   GNUNET_CONNECTION_destroy (csock, GNUNET_YES);
   *ok = 0;