dect
/
asterisk
Archived
13
0
Fork 0

Fix strdupa references

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1304 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2003-08-12 22:45:23 +00:00
parent ae0c417bab
commit f643cb28d8
1 changed files with 2 additions and 2 deletions

View File

@ -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);