]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
When handling the case where the hostname is just an IPV4 numeric address,
authorRussell Bryant <russell@russellbryant.com>
Tue, 31 Oct 2006 06:18:36 +0000 (06:18 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 31 Oct 2006 06:18:36 +0000 (06:18 +0000)
be sure to set the address type.  (issue #8247, alexr)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@46560 65c4cc65-6c06-0410-ace0-fbb531ad65f3

utils.c

diff --git a/utils.c b/utils.c
index 8f3dbcd7b32ea02e1b4173a862f42b0c4dd52b00..e712ebe665cc9f30d44b02237951c0dea82546aa 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -195,6 +195,7 @@ struct hostent *ast_gethostbyname(const char *host, struct ast_hostent *hp)
                if (dots != 3)
                        return NULL;
                memset(hp, 0, sizeof(struct ast_hostent));
+               hp->hp.h_addrtype = AF_INET;
                hp->hp.h_addr_list = (void *) hp->buf;
                hp->hp.h_addr = hp->buf + sizeof(void *);
                if (inet_pton(AF_INET, host, hp->hp.h_addr) > 0)