Merge branch 'collectd-5.4' into collectd-5.5
[collectd.git] / src / write_graphite.c
index 41451a8..a7eef3f 100644 (file)
@@ -132,7 +132,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;