aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_unix.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-06-16 10:09:47 +0000
committerChristian Grothoff <christian@grothoff.org>2011-06-16 10:09:47 +0000
commit007b8443b0cb0d67bf8b176a1a175ad4bc37f1f3 (patch)
treeb42d56110ae349eb2977673690c072dcf75b32a4 /src/transport/plugin_transport_unix.c
parent94c41ff98d293d8c041c4bbbe8d19dbf8ccd6f3f (diff)
downloadgnunet-007b8443b0cb0d67bf8b176a1a175ad4bc37f1f3.tar.gz
gnunet-007b8443b0cb0d67bf8b176a1a175ad4bc37f1f3.zip
resolver API change
Diffstat (limited to 'src/transport/plugin_transport_unix.c')
-rw-r--r--src/transport/plugin_transport_unix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index c72de6ca6..835f01611 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -1062,7 +1062,6 @@ unix_plugin_address_pretty_printer (void *cls,
1062 GNUNET_TRANSPORT_AddressStringCallback asc, 1062 GNUNET_TRANSPORT_AddressStringCallback asc,
1063 void *asc_cls) 1063 void *asc_cls)
1064{ 1064{
1065 struct Plugin *plugin = cls;
1066 struct PrettyPrinterContext *ppc; 1065 struct PrettyPrinterContext *ppc;
1067 const void *sb; 1066 const void *sb;
1068 size_t sbs; 1067 size_t sbs;
@@ -1107,8 +1106,7 @@ unix_plugin_address_pretty_printer (void *cls,
1107 ppc->asc = asc; 1106 ppc->asc = asc;
1108 ppc->asc_cls = asc_cls; 1107 ppc->asc_cls = asc_cls;
1109 ppc->port = port; 1108 ppc->port = port;
1110 GNUNET_RESOLVER_hostname_get (plugin->env->cfg, 1109 GNUNET_RESOLVER_hostname_get (sb,
1111 sb,
1112 sbs, 1110 sbs,
1113 !numeric, timeout, &append_port, ppc); 1111 !numeric, timeout, &append_port, ppc);
1114} 1112}