aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport_api.c')
-rw-r--r--src/transport/transport_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/transport_api.c b/src/transport/transport_api.c
index 93efcb4ba..451b66c12 100644
--- a/src/transport/transport_api.c
+++ b/src/transport/transport_api.c
@@ -1573,7 +1573,7 @@ demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
1573#endif 1573#endif
1574 if (h->network_handle != NULL) 1574 if (h->network_handle != NULL)
1575 { 1575 {
1576 GNUNET_NETWORK_connection_notify_transmit_ready_cancel (h->network_handle); 1576 GNUNET_CONNECTION_notify_transmit_ready_cancel (h->network_handle);
1577 h->network_handle = NULL; 1577 h->network_handle = NULL;
1578 h->transmission_scheduled = GNUNET_NO; 1578 h->transmission_scheduled = GNUNET_NO;
1579 th = h->connect_ready_head; 1579 th = h->connect_ready_head;
@@ -1964,7 +1964,7 @@ GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
1964 h = th->handle; 1964 h = th->handle;
1965 if ((h->connect_ready_head == NULL) && (h->network_handle != NULL)) 1965 if ((h->connect_ready_head == NULL) && (h->network_handle != NULL))
1966 { 1966 {
1967 GNUNET_NETWORK_connection_notify_transmit_ready_cancel (h->network_handle); 1967 GNUNET_CONNECTION_notify_transmit_ready_cancel (h->network_handle);
1968 h->network_handle = NULL; 1968 h->network_handle = NULL;
1969 h->transmission_scheduled = GNUNET_NO; 1969 h->transmission_scheduled = GNUNET_NO;
1970 } 1970 }