aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_address_lookup.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-04-01 09:41:57 +0000
committerChristian Grothoff <christian@grothoff.org>2010-04-01 09:41:57 +0000
commitf380532bffbb746ecc8ebbed49fb96cf6c3928d4 (patch)
tree591bcef9caeacbf251816c8c9dd3916453db88fe /src/transport/transport_api_address_lookup.c
parentf513c42604b7539368faab72993459fda9d9e711 (diff)
downloadgnunet-f380532bffbb746ecc8ebbed49fb96cf6c3928d4.tar.gz
gnunet-f380532bffbb746ecc8ebbed49fb96cf6c3928d4.zip
fixes
Diffstat (limited to 'src/transport/transport_api_address_lookup.c')
-rw-r--r--src/transport/transport_api_address_lookup.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/transport/transport_api_address_lookup.c b/src/transport/transport_api_address_lookup.c
index cd2e73584..689e553b3 100644
--- a/src/transport/transport_api_address_lookup.c
+++ b/src/transport/transport_api_address_lookup.c
@@ -167,12 +167,13 @@ GNUNET_TRANSPORT_address_lookup (struct GNUNET_SCHEDULER_Handle *sched,
167 aluCB->cb_cls = aluc_cls; 167 aluCB->cb_cls = aluc_cls;
168 aluCB->timeout = abs_timeout; 168 aluCB->timeout = abs_timeout;
169 aluCB->client = client; 169 aluCB->client = client;
170 GNUNET_CLIENT_transmit_and_get_response (client, 170 GNUNET_assert (GNUNET_OK ==
171 &msg->header, 171 GNUNET_CLIENT_transmit_and_get_response (client,
172 timeout, 172 &msg->header,
173 GNUNET_YES, 173 timeout,
174 &address_response_processor, 174 GNUNET_YES,
175 aluCB); 175 &address_response_processor,
176 aluCB));
176 GNUNET_free (msg); 177 GNUNET_free (msg);
177} 178}
178 179