From 34f48ffc58b888ef3d778f343eaf988a20166127 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 27 Apr 2012 10:07:01 +0000 Subject: [PATCH] - fixes --- src/transport/plugin_transport_unix.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c index 46dee9ce3..041a7997a 100644 --- a/src/transport/plugin_transport_unix.c +++ b/src/transport/plugin_transport_unix.c @@ -448,9 +448,13 @@ unix_real_send (void *cls, if (GNUNET_NETWORK_socket_setsockopt ((struct GNUNET_NETWORK_Handle *) send_handle, SOL_SOCKET, SO_SNDBUF, &size, sizeof (size)) == GNUNET_OK) - retry = GNUNET_YES; + { + sent = GNUNET_NETWORK_socket_sendto (send_handle, msgbuf, msgbuf_size, sb, sbs); + } else + { GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "setsockopt"); + } } } -- 2.25.1