Skip to content

Commit

Permalink
corex: fix conditions for dns_cache modparam srv attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
anomarme committed Mar 23, 2024
1 parent f35cf89 commit 8114b20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/corex/corex_mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ static int corex_dns_cache_param_add(str *pval)
}
} else if(pit->name.len == 8
&& strncasecmp(pit->name.s, "priority", 8) == 0) {
if(dns_flags == 0) {
if(dns_priority == 0) {
if(str2sint(&pit->body, &dns_priority) < 0) {
LM_ERR("invalid priority: %.*s\n", pit->body.len,
pit->body.s);
Expand All @@ -463,7 +463,7 @@ static int corex_dns_cache_param_add(str *pval)
}
} else if(pit->name.len == 6
&& strncasecmp(pit->name.s, "weight", 6) == 0) {
if(dns_flags == 0) {
if(dns_weight == 0) {
if(str2sint(&pit->body, &dns_weight) < 0) {
LM_ERR("invalid weight: %.*s\n", pit->body.len,
pit->body.s);
Expand All @@ -472,7 +472,7 @@ static int corex_dns_cache_param_add(str *pval)
}
} else if(pit->name.len == 4
&& strncasecmp(pit->name.s, "port", 4) == 0) {
if(dns_flags == 0) {
if(dns_port == 0) {
if(str2sint(&pit->body, &dns_port) < 0) {
LM_ERR("invalid port: %.*s\n", pit->body.len, pit->body.s);
return -1;
Expand Down

0 comments on commit 8114b20

Please sign in to comment.