summaryrefslogtreecommitdiff
path: root/acl.c
diff options
context:
space:
mode:
Diffstat (limited to 'acl.c')
-rwxr-xr-xacl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/acl.c b/acl.c
index 7042eeee5..7f2f9c782 100755
--- a/acl.c
+++ b/acl.c
@@ -207,6 +207,8 @@ int ast_get_ip_or_srv(struct sockaddr_in *sin, const char *value, const char *se
char srv[256];
char host[256];
int tportno = ntohs(sin->sin_port);
+ if (inet_aton(value, &sin->sin_addr))
+ return 0;
if (service) {
snprintf(srv, sizeof(srv), "%s.%s", service, value);
if (ast_get_srv(NULL, host, sizeof(host), &tportno, srv) > 0) {