mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
Fix a misplaced block of code in the 1.2 version of the patch to fix issue #8977
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@58167 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
10
manager.c
10
manager.c
@@ -879,17 +879,17 @@ static int action_redirect(struct mansession *s, struct message *m)
|
||||
return 0;
|
||||
}
|
||||
chan = ast_get_channel_by_name_locked(name);
|
||||
if (chan->_state != AST_STATE_UP) {
|
||||
astman_send_error(s, m, "Redirect failed, channel not up.\n");
|
||||
ast_mutex_unlock(&chan->lock);
|
||||
return 0;
|
||||
}
|
||||
if (!chan) {
|
||||
char buf[BUFSIZ];
|
||||
snprintf(buf, sizeof(buf), "Channel does not exist: %s", name);
|
||||
astman_send_error(s, m, buf);
|
||||
return 0;
|
||||
}
|
||||
if (chan->_state != AST_STATE_UP) {
|
||||
astman_send_error(s, m, "Redirect failed, channel not up.\n");
|
||||
ast_mutex_unlock(&chan->lock);
|
||||
return 0;
|
||||
}
|
||||
if (!ast_strlen_zero(name2))
|
||||
chan2 = ast_get_channel_by_name_locked(name2);
|
||||
if (chan2 && chan2->_state != AST_STATE_UP) {
|
||||
|
Reference in New Issue
Block a user