Skip to content

Commit

Permalink
[load_balancer] Spelling over log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan-iancu authored and razvancrainea committed Jul 20, 2020
1 parent 0306b2d commit 39a4034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/load_balancer/lb_parser.c
Expand Up @@ -80,12 +80,12 @@ struct lb_res_str_list *parse_resources_list(char *r_list, int has_val)
*end = ';';
if (p) {
if (!has_val) {
LM_ERR("resource must not has value!\n");
LM_ERR("resource must not have value!\n");
goto error;
}
} else {
if (has_val) {
LM_ERR("resource must has value!\n");
LM_ERR("resource must have value!\n");
goto error;
}
p = end?end:(r_list+strlen(r_list));
Expand Down

0 comments on commit 39a4034

Please sign in to comment.