[asterisk-commits] twilson: branch 1.8 r332559 - /branches/1.8/main/netsock2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Aug 18 16:26:04 CDT 2011
Author: twilson
Date: Thu Aug 18 16:26:01 2011
New Revision: 332559
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=332559
Log:
Fix possible error on stringification of IPv4-mapped addrs
The FreeBSD netsock2 test has been failing for a while. We were
pasing sa->len to getnameinfo instead of sa_tmp->len.
Modified:
branches/1.8/main/netsock2.c
Modified: branches/1.8/main/netsock2.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/netsock2.c?view=diff&rev=332559&r1=332558&r2=332559
==============================================================================
--- branches/1.8/main/netsock2.c (original)
+++ branches/1.8/main/netsock2.c Thu Aug 18 16:26:01 2011
@@ -85,7 +85,7 @@
sa_tmp = sa;
}
- if ((e = getnameinfo((struct sockaddr *)&sa_tmp->ss, sa->len,
+ if ((e = getnameinfo((struct sockaddr *)&sa_tmp->ss, sa_tmp->len,
format & AST_SOCKADDR_STR_ADDR ? host : NULL,
format & AST_SOCKADDR_STR_ADDR ? sizeof(host) : 0,
format & AST_SOCKADDR_STR_PORT ? port : 0,
More information about the asterisk-commits
mailing list