aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_address_to_string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport_api_address_to_string.c')
-rw-r--r--src/transport/transport_api_address_to_string.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/transport_api_address_to_string.c b/src/transport/transport_api_address_to_string.c
index 0fb0623dc..0cf0111b3 100644
--- a/src/transport/transport_api_address_to_string.c
+++ b/src/transport/transport_api_address_to_string.c
@@ -170,15 +170,15 @@ GNUNET_TRANSPORT_address_to_string (const struct GNUNET_CONFIGURATION_Handle
170/** 170/**
171 * Cancel request for address conversion. 171 * Cancel request for address conversion.
172 * 172 *
173 * @param alc handle for the request to cancel 173 * @param pic the context handle
174 */ 174 */
175void 175void
176GNUNET_TRANSPORT_address_to_string_cancel (struct 176GNUNET_TRANSPORT_address_to_string_cancel (struct
177 GNUNET_TRANSPORT_AddressToStringContext 177 GNUNET_TRANSPORT_AddressToStringContext
178 *alc) 178 *pic)
179{ 179{
180 GNUNET_CLIENT_disconnect (alc->client); 180 GNUNET_CLIENT_disconnect (pic->client);
181 GNUNET_free (alc); 181 GNUNET_free (pic);
182} 182}
183 183
184 184