From f6764f4722191ac669ca8c867679727179a7b32f Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 27 Apr 2003 21:34:27 +0000 Subject: More contributed BSD enhancements git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@919 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_indications.c | 4 ++-- res/res_parking.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'res') diff --git a/res/res_indications.c b/res/res_indications.c index 3ed4c088d..5f039f6c7 100755 --- a/res/res_indications.c +++ b/res/res_indications.c @@ -248,7 +248,7 @@ static int ind_load_module(void) if (!strcasecmp(v->name, "description")) { strncpy(tones->description, v->value, sizeof(tones->description)-1); } else if (!strcasecmp(v->name,"ringcadance")) { - char *ring,*rings = strdupa(v->value); + char *ring,*rings = ast_strdupa(v->value); c = rings; ring = strsep(&c,","); while (ring) { @@ -270,7 +270,7 @@ static int ind_load_module(void) ring = strsep(&c,","); } } else if (!strcasecmp(v->name,"alias")) { - char *countries = strdupa(v->value); + char *countries = ast_strdupa(v->value); c = countries; country = strsep(&c,","); while (country) { diff --git a/res/res_parking.c b/res/res_parking.c index 4ffbc5166..63dc19230 100755 --- a/res/res_parking.c +++ b/res/res_parking.c @@ -611,7 +611,7 @@ unsigned int ast_get_group(char *s) char *c=NULL; int start=0, finish=0,x; unsigned int group = 0; - copy = strdupa(s); + copy = ast_strdupa(s); if (!copy) { ast_log(LOG_ERROR, "Out of memory\n"); return 0; -- cgit v1.2.3