Fix typo about maddr (bug #4386)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5772 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2005-05-26 15:06:24 +00:00
parent 89de7daba9
commit a6f2f031b3

View file

@ -3459,7 +3459,7 @@ static void set_destination(struct sip_pvt *p, char *uri)
maddr += 6; maddr += 6;
hn = strspn(maddr, "0123456789.") + 1; hn = strspn(maddr, "0123456789.") + 1;
if (hn > sizeof(hostname)) hn = sizeof(hostname); if (hn > sizeof(hostname)) hn = sizeof(hostname);
ast_copy_string(hostname, h, hn); ast_copy_string(hostname, maddr, hn);
} }
hp = ast_gethostbyname(hostname, &ahp); hp = ast_gethostbyname(hostname, &ahp);