From 57f42bd74f78d5022631b2ba2269892f8a3a384a Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Mon, 20 Feb 2012 23:43:27 +0000 Subject: ast_channel opaquification of pointers and integral types Review: https://reviewboard.asterisk.org/r/1753/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@356042 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_record.c') diff --git a/apps/app_record.c b/apps/app_record.c index 420ed0e62..b7c6bfab7 100644 --- a/apps/app_record.c +++ b/apps/app_record.c @@ -260,7 +260,7 @@ static int record_exec(struct ast_channel *chan, const char *data) ast_copy_string(tmp, args.filename, sizeof(tmp)); /* end of routine mentioned */ - if (chan->_state != AST_STATE_UP) { + if (ast_channel_state(chan) != AST_STATE_UP) { if (ast_test_flag(&flags, OPTION_SKIP)) { /* At the user's option, skip if the line is not up */ pbx_builtin_setvar_helper(chan, "RECORD_STATUS", "SKIP"); -- cgit v1.2.3