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, "|"))) {
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);