From 1d1d4fcac64529fcdc8c948483c06580e5369208 Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Fri, 28 Nov 2014 19:15:54 +0100 Subject: [PATCH] Fix access to config field of ngx_rtmp_in{,6}_addr_t. Closes #290 --- ngx_rtmp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ngx_rtmp.h b/ngx_rtmp.h index b87e99e..6fffbda 100644 --- a/ngx_rtmp.h +++ b/ngx_rtmp.h @@ -60,16 +60,16 @@ typedef struct { } ngx_rtmp_addr_conf_t; typedef struct { - in_addr_t addr; ngx_rtmp_addr_conf_t conf; + in_addr_t addr; } ngx_rtmp_in_addr_t; #if (NGX_HAVE_INET6) typedef struct { - struct in6_addr addr6; ngx_rtmp_addr_conf_t conf; + struct in6_addr addr6; } ngx_rtmp_in6_addr_t; #endif