aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-06-02 09:40:12 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-06-02 09:40:12 +0000
commit800c3b54ba9a67ad995d6b5c1ecbffe224f4676d (patch)
tree43347995315ca4cdd5b6d1a8dd2f0e7cf0a71134 /src/transport/plugin_transport_wlan.c
parentda3d84fb0f3e5a681976b53d43275b2d9b401886 (diff)
downloadgnunet-800c3b54ba9a67ad995d6b5c1ecbffe224f4676d.tar.gz
gnunet-800c3b54ba9a67ad995d6b5c1ecbffe224f4676d.zip
fix semantic for address_to_string
Diffstat (limited to 'src/transport/plugin_transport_wlan.c')
-rw-r--r--src/transport/plugin_transport_wlan.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c
index 124594e90..f0197feb8 100644
--- a/src/transport/plugin_transport_wlan.c
+++ b/src/transport/plugin_transport_wlan.c
@@ -1725,15 +1725,15 @@ wlan_plugin_address_pretty_printer (void *cls, const char *type,
1725 if (sizeof (struct WlanAddress) != addrlen) 1725 if (sizeof (struct WlanAddress) != addrlen)
1726 { 1726 {
1727 /* invalid address */ 1727 /* invalid address */
1728 LOG (GNUNET_ERROR_TYPE_WARNING, 1728 asc (asc_cls, NULL, GNUNET_SYSERR);
1729 _("WLAN address with invalid size encountered\n")); 1729 }
1730 asc (asc_cls, NULL); 1730 else
1731 return; 1731 {
1732 ret = GNUNET_strdup (wlan_plugin_address_to_string(NULL, addr, addrlen));
1733 asc (asc_cls, ret, GNUNET_OK);
1734 GNUNET_free (ret);
1732 } 1735 }
1733 ret = GNUNET_strdup (wlan_plugin_address_to_string(NULL, addr, addrlen)); 1736 asc (asc_cls, NULL, GNUNET_OK);
1734 asc (asc_cls, ret);
1735 GNUNET_free (ret);
1736 asc (asc_cls, NULL);
1737} 1737}
1738 1738
1739 1739