From 0da0e3856cdd0d55bb13b86ca724e0cbd854d539 Mon Sep 17 00:00:00 2001
From: Jason Parker <jparker@digium.com>
Date: Tue, 27 Apr 2010 22:28:16 +0000
Subject: [PATCH] Be more explicit about field naming in a test.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@259587 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channels/sip/dialplan_functions.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/channels/sip/dialplan_functions.c b/channels/sip/dialplan_functions.c
index 297f9f5dab..509eacf314 100644
--- a/channels/sip/dialplan_functions.c
+++ b/channels/sip/dialplan_functions.c
@@ -262,7 +262,7 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
 		.write = test_sip_rtpqos_1_write,
 		.get_stat = test_sip_rtpqos_1_get_stat,
 	};
-	struct sockaddr_in sin = { .sin_port = 31337, .sin_addr = { 4 * 16777216 + 3 * 65536 + 2 * 256 + 1 } };
+	struct sockaddr_in sin = { .sin_port = 31337, .sin_addr = { .s_addr = 4 * 16777216 + 3 * 65536 + 2 * 256 + 1 } };
 	struct ast_rtp_instance_stats mine = { 0, };
 	struct sip_pvt *p = NULL;
 	struct ast_channel *chan = NULL;
-- 
GitLab