summaryrefslogtreecommitdiff
path: root/main/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/utils.c')
-rw-r--r--main/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/utils.c b/main/utils.c
index 9bdf74f19..21842ee94 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -1362,20 +1362,20 @@ int ast_build_string(char **buffer, size_t *space, const char *fmt, ...)
return result;
}
-int ast_regex_string_to_regex_pattern(const char *regex_string, struct ast_str *regex_pattern)
+int ast_regex_string_to_regex_pattern(const char *regex_string, struct ast_str **regex_pattern)
{
int regex_len = strlen(regex_string);
int ret = 3;
/* Chop off the leading / if there is one */
if ((regex_len >= 1) && (regex_string[0] == '/')) {
- ast_str_set(&regex_pattern, 0, "%s", regex_string + 1);
+ ast_str_set(regex_pattern, 0, "%s", regex_string + 1);
ret -= 2;
}
/* Chop off the ending / if there is one */
if ((regex_len > 1) && (regex_string[regex_len - 1] == '/')) {
- ast_str_truncate(regex_pattern, -1);
+ ast_str_truncate(*regex_pattern, -1);
ret -= 1;
}