Hi<br><br>Thanks for so fast reply, but I already have this part like this:<br><br>
<br>
static int action_timeout(struct mansession *s, const struct message *m)<br>
{<br>
struct ast_channel *c;<br>
const char *name = astman_get_header(m, "Channel");<br>
int timeout = atoi(astman_get_header(m, "Timeout"));<br>
<br>
if (<span style="background-color: rgb(255, 255, 51);">ast_strlen_zero(name)</span>) {<br>
astman_send_error(s, m, "No channel specified");<br>
return 0;<br>
}<br><br>no negation in 7th line. So I guest it is not the case.<br><br>