]> source.dussan.org Git - rspamd.git/commitdiff
Correctly use ai_family for socket(2) call.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Jun 2013 16:08:04 +0000 (17:08 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Jun 2013 16:08:04 +0000 (17:08 +0100)
src/util.c

index 4a8f1aa056d956025ddaff4766814f8892521b26..56f6c5f26ebec872bfd46586ec450e076e0b4733 100644 (file)
@@ -95,7 +95,7 @@ make_inet_socket (gint type, struct addrinfo *addr, gboolean is_server, gboolean
        cur = addr;
        while (cur) {
                /* Create socket */
-               fd = socket (cur->ai_protocol, type, 0);
+               fd = socket (cur->ai_family, type, 0);
                if (fd == -1) {
                        msg_warn ("socket failed: %d, '%s'", errno, strerror (errno));
                        goto out;