aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_indications.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-14 23:01:01 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-14 23:01:01 +0000
commit7a0fe5c93f93c827215ac7ed613130434c77e649 (patch)
treeca14014e3c226332296ae0d687f996e9d8dfe6b2 /res/res_indications.c
parente95289a0e951770a0233260e49add9df9b20d97a (diff)
Convert uses of strdup() to ast_strdup()
(issue #9983, eliel) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@69436 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_indications.c')
-rw-r--r--res/res_indications.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_indications.c b/res/res_indications.c
index 1a8aafc76..7397218dc 100644
--- a/res/res_indications.c
+++ b/res/res_indications.c
@@ -314,8 +314,8 @@ static int ind_load_module(void)
return -1;
}
ts->next = NULL;
- ts->name = strdup(v->name);
- ts->data = strdup(v->value);
+ ts->name = ast_strdup(v->name);
+ ts->data = ast_strdup(v->value);
if (ps)
ps->next = ts;
else