From: Christian Grothoff Date: Mon, 26 Sep 2016 18:53:14 +0000 (+0000) Subject: -do not log EPIPE X-Git-Tag: initial-import-from-subversion-38251~197 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=808e4a55f8ac3516a766873502b9bb020ef3d066;p=oweals%2Fgnunet.git -do not log EPIPE --- diff --git a/src/util/service_new.c b/src/util/service_new.c index 95bdca33b..9981ae4c6 100644 --- a/src/util/service_new.c +++ b/src/util/service_new.c @@ -1849,8 +1849,9 @@ do_send (void *cls) } else { - GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, - "send"); + if (EPIPE != errno) + GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, + "send"); GNUNET_MQ_inject_error (client->mq, GNUNET_MQ_ERROR_WRITE); return;