From: Matthias Wachs Date: Fri, 27 Apr 2012 10:07:01 +0000 (+0000) Subject: - fixes X-Git-Tag: initial-import-from-subversion-38251~13743 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=34f48ffc58b888ef3d778f343eaf988a20166127;p=oweals%2Fgnunet.git - fixes --- 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"); + } } }