diff --git a/channel.c b/channel.c index 94fbb6d7a5..075de5cdca 100755 --- a/channel.c +++ b/channel.c @@ -2440,9 +2440,11 @@ int ast_do_masquerade(struct ast_channel *original) strncpy(clone->name, zombn, sizeof(clone->name) - 1); manager_event(EVENT_FLAG_CALL, "Rename", "Oldname: %s\r\nNewname: %s\r\nUniqueid: %s\r\n", masqn, zombn, clone->uniqueid); - /* Keep the same language. */ /* Update the type. */ original->type = clone->type; + + /* Keep the same language. */ + strncpy(original->language, clone->language, sizeof(original->language)); /* Copy the FD's */ for (x=0;xfds[x] = clone->fds[x];