aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-05-16 08:38:28 +0000
committerChristian Grothoff <christian@grothoff.org>2013-05-16 08:38:28 +0000
commit387dae643dbbc4d3a11ac2e6a125e0ea08e85d37 (patch)
treef875eded3b06292ffa042b348eafdceaa3ebd71a /src/transport
parent5190ddf683d4ac95ae33f7000bd5229b13a3d15f (diff)
downloadgnunet-387dae643dbbc4d3a11ac2e6a125e0ea08e85d37.tar.gz
gnunet-387dae643dbbc4d3a11ac2e6a125e0ea08e85d37.zip
-fix error reporting
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index ae7346ef9..28ebf96e3 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -2764,7 +2764,7 @@ setup_sockets (struct Plugin *plugin,
2764 plugin->sockv4 = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 0); 2764 plugin->sockv4 = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 0);
2765 if (NULL == plugin->sockv4) 2765 if (NULL == plugin->sockv4)
2766 { 2766 {
2767 LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "socket"); 2767 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
2768 return sockets_created; 2768 return sockets_created;
2769 } 2769 }
2770 else 2770 else