the swrite interface is 'non-zero'
authorSam Pointer <sampointer>
Wed, 25 Nov 2015 15:43:07 +0000 (15:43 +0000)
committerFlorian Forster <octo@collectd.org>
Sat, 28 Nov 2015 06:59:05 +0000 (07:59 +0100)
Signed-off-by: Florian Forster <octo@collectd.org>
src/write_graphite.c

index 504ea9d..547e5db 100644 (file)
@@ -128,7 +128,7 @@ static int wg_send_buffer (struct wg_callback *cb)
     ssize_t status = 0;
 
     status = swrite (cb->sock_fd, cb->send_buf, strlen (cb->send_buf));
-    if (status < 0)
+    if (status != 0)
     {
         const char *protocol = cb->protocol ? cb->protocol : WG_DEFAULT_PROTOCOL;