aboutsummaryrefslogtreecommitdiffstats
path: root/srv.c
diff options
context:
space:
mode:
Diffstat (limited to 'srv.c')
-rwxr-xr-xsrv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/srv.c b/srv.c
index c49abbf14..299d3eed3 100755
--- a/srv.c
+++ b/srv.c
@@ -79,8 +79,10 @@ static int srv_callback(void *context, u_char *answer, int len, u_char *fullansw
{
struct srv_context *c = (struct srv_context *)context;
- if (parse_srv(c->host, c->hostlen, c->port, answer, len, fullanswer))
+ if (parse_srv(c->host, c->hostlen, c->port, answer, len, fullanswer)) {
ast_log(LOG_WARNING, "Failed to parse srv\n");
+ return -1;
+ }
if (strlen(c->host))
return 1;