]> source.dussan.org Git - rspamd.git/commitdiff
Fix UDP sockets creation.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Jun 2013 16:17:07 +0000 (17:17 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 3 Jun 2013 16:17:07 +0000 (17:17 +0100)
src/util.c

index 56f6c5f26ebec872bfd46586ec450e076e0b4733..716457d459645b41ea0c05068cb5919a9ef0eaf4 100644 (file)
@@ -349,7 +349,7 @@ make_universal_socket (const gchar *credits, guint16 port, gint type, gboolean a
 
                rspamd_snprintf (portbuf, sizeof (portbuf), "%d", (int)port);
                if ((r = getaddrinfo (credits, portbuf, &hints, &res)) == 0) {
-                       r = make_tcp_socket (res, is_server, async);
+                       r = make_inet_socket (type, res, is_server, async);
                        freeaddrinfo (res);
                        return r;
                }