From e4c58b025f5ac5910b675310d567694787771872 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 12 Aug 2003 22:45:23 +0000 Subject: Fix strdupa references git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1304 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/app_voicemail2.c b/apps/app_voicemail2.c index 4223504bd..a955fe32e 100755 --- a/apps/app_voicemail2.c +++ b/apps/app_voicemail2.c @@ -160,7 +160,7 @@ LOCAL_USER_DECL; static void apply_options(struct ast_vm_user *vmu, char *options) { /* Destructively Parse options and apply */ - char *stringp = strdupa(options); + char *stringp = ast_strdupa(options); char *s; char *var, *value; while((s = strsep(&stringp, "|"))) { @@ -2989,7 +2989,7 @@ static int load_config(void) z = malloc(sizeof(struct vm_zone)); if (z != NULL) { char *msg_format, *timezone; - msg_format = strdupa(var->value); + msg_format = ast_strdupa(var->value); if (msg_format != NULL) { timezone = strsep(&msg_format, "|"); strncpy(z->name, var->name, sizeof(z->name) - 1); -- cgit v1.2.3