From: Jason Parker Date: Tue, 27 Apr 2010 22:28:16 +0000 (+0000) Subject: Be more explicit about field naming in a test. X-Git-Tag: 11.0.0-beta1~3107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0da0e3856cdd0d55bb13b86ca724e0cbd854d539;p=thirdparty%2Fasterisk.git 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 --- 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;