Code

src/utils_threshold.c: Corrected and improved the handling of the `invert' setting.
[collectd.git] / src / network.c
index ab04f4c13bd349117b1f3dd324b638ef2e4edb1a..a659189f3e7960d312d0d608f9f8af55d1e3c5bb 100644 (file)
@@ -682,10 +682,11 @@ static int network_set_ttl (const sockent_t *se, const struct addrinfo *ai)
 static int network_bind_socket (const sockent_t *se, const struct addrinfo *ai)
 {
        int loop = 0;
+       int yes  = 1;
 
        /* allow multiple sockets to use the same PORT number */
        if (setsockopt(se->fd, SOL_SOCKET, SO_REUSEADDR,
-                               &loop, sizeof(loop)) == -1) {
+                               &yes, sizeof(yes)) == -1) {
                 char errbuf[1024];
                 ERROR ("setsockopt: %s", 
                                 sstrerror (errno, errbuf, sizeof (errbuf)));