]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
main/cli: Do not attempt to show CDR data for internal channels
authorMatthew Jordan <mjordan@digium.com>
Mon, 1 Sep 2014 14:16:12 +0000 (14:16 +0000)
committerMatthew Jordan <mjordan@digium.com>
Mon, 1 Sep 2014 14:16:12 +0000 (14:16 +0000)
Internal channels don't have CDRs. Querying the CDR engine for their variables
will make it cranky.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@422506 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/cli.c

index 76c4962f4a9bb26af1d786bb57a77fcefa2de03a..8735fff8d05b2a030248863703cd009f2a7689b5 100644 (file)
@@ -1659,7 +1659,8 @@ static char *handle_showchan(struct ast_cli_entry *e, int cmd, struct ast_cli_ar
                ast_str_append(&output, 0, "%s=%s\n", ast_var_name(var), ast_var_value(var));
        }
 
-       if (ast_cdr_serialize_variables(ast_channel_name(chan), &obuf, '=', '\n')) {
+       if (!(ast_channel_tech(chan)->properties & AST_CHAN_TP_INTERNAL)
+               && ast_cdr_serialize_variables(ast_channel_name(chan), &obuf, '=', '\n')) {
                ast_str_append(&output, 0, "  CDR Variables:\n%s\n", ast_str_buffer(obuf));
        }