From: Tobias Oetiker Date: Sat, 11 Oct 2008 09:53:40 +0000 (+0000) Subject: this ensures that the response is protocol-compliant even if additional X-Git-Tag: 1.4.0~261 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f062711c256e835991af8e810f09ba34e88ef8e3;p=thirdparty%2Frrdtool-1.x.git this ensures that the response is protocol-compliant even if additional info has been added to the write buffer during processing. -- kevin brintnall git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1597 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index b2cee95b..3e925301 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -488,7 +488,7 @@ static int send_response (listen_socket_t *sock, response_code rc, return -1; } - if (sock->wbuf != NULL) + if (sock->wbuf != NULL && rc == RESP_OK) { wrote = 0; while (wrote < sock->wbuf_len)