From d9846e9f6b1a36c383d476775e6c6d87997161ab Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 17 Jul 2013 03:34:12 +0200 Subject: [PATCH] Using AF_* constants instead of PF_* (for POSIX compliance) --- src/transport/udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transport/udp.c b/src/transport/udp.c index 1c6807a..204402f 100644 --- a/src/transport/udp.c +++ b/src/transport/udp.c @@ -42,7 +42,7 @@ /* for udp4 and udp6 */ #ifndef UDP_FAMILY -# define UDP_FAMILY PF_UNSPEC +# define UDP_FAMILY AF_UNSPEC #endif