network plugin: Fix setsockopt for SO_REUSEADDR since value of loop variable changed
authorPavel Shramov <shramov@mexmat.net>
Tue, 4 Dec 2007 14:43:35 +0000 (17:43 +0300)
committerFlorian Forster <octo@huhu.verplant.org>
Sat, 8 Dec 2007 11:57:24 +0000 (12:57 +0100)
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
src/network.c

index ab04f4c..a659189 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)));