mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Copy language, too (bug #3401)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4872 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;x<AST_MAX_FDS;x++) {
|
||||
original->fds[x] = clone->fds[x];
|
||||
|
Reference in New Issue
Block a user