Merge branch 'collectd-5.5' into collectd-5.6
[collectd.git] / src / mbmon.c
index 1f0a0d6..9629b89 100644 (file)
@@ -24,9 +24,9 @@
  **/
 
 #include "collectd.h"
+
 #include "common.h"
 #include "plugin.h"
-#include "configfile.h"
 
 #include <netdb.h>
 #include <netinet/in.h>
@@ -84,7 +84,7 @@ static int mbmon_query_daemon (char *buffer, int buffer_size)
        const char *host;
        const char *port;
 
-       struct addrinfo *ai_list, *ai_ptr;
+       struct addrinfo *ai_list;
        int              ai_return;
 
        host = mbmon_host;
@@ -96,7 +96,7 @@ static int mbmon_query_daemon (char *buffer, int buffer_size)
                port = MBMON_DEF_PORT;
 
        struct addrinfo ai_hints = {
-               .ai_family = PF_UNSPEC,
+               .ai_family = AF_UNSPEC,
                .ai_flags = AI_ADDRCONFIG,
                .ai_protocol = IPPROTO_TCP,
                .ai_socktype = SOCK_STREAM
@@ -114,7 +114,7 @@ static int mbmon_query_daemon (char *buffer, int buffer_size)
        }
 
        fd = -1;
-       for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
+       for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
        {
                /* create our socket descriptor */
                if ((fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol)) < 0)
@@ -236,9 +236,7 @@ static void mbmon_submit (const char *type, const char *type_instance,
 /* Trim trailing whitespace from a string. */
 static void trim_spaces (char *s)
 {
-       size_t l;
-
-       for (l = strlen (s) - 1; (l > 0) && isspace ((int) s[l]); l--)
+       for (size_t l = strlen (s) - 1; (l > 0) && isspace ((int) s[l]); l--)
                s[l] = '\0';
 }