[asterisk-bugs] [Asterisk 0014349]: manager.c - error in action_originate resulting in "Channel not specified" error
Asterisk Bug Tracker
noreply at bugs.digium.com
Tue Jan 27 21:17:57 CST 2009
The following issue has been set as DUPLICATE OF issue 0014208.
======================================================================
http://bugs.digium.com/view.php?id=14349
======================================================================
Reported By: erik_dedecker
Assigned To: mnicholson
======================================================================
Project: Asterisk
Issue ID: 14349
Category: Core/ManagerInterface
Reproducibility: always
Severity: trivial
Priority: normal
Status: closed
Asterisk Version: 1.6.0.5
Regression: No
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
Resolution: duplicate
Duplicate: 0
Fixed in Version: 1.6.0.6
======================================================================
Date Submitted: 2009-01-27 16:35 CST
Last Modified: 2009-01-27 21:17 CST
======================================================================
Summary: manager.c - error in action_originate resulting in
"Channel not specified" error
Description:
In Asterisk version 1.6.0.5 main/manager.c
in function call: action_originate
The test condition is reversed:
if (!ast_strlen_zero(name)) {
astman_send_error(s, m, "Channel not specified");
return 0;
}
must become:
if (ast_strlen_zero(name)) {
astman_send_error(s, m, "Channel not specified");
return 0;
}
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
duplicate of 0014208 Channel not specified - Asterisk-1.6.0.3
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
2009-01-27 21:17 seanbright Relationship added duplicate of 0014208
======================================================================
More information about the asterisk-bugs
mailing list