summaryrefslogtreecommitdiff
path: root/pbx/pbx_realtime.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-07-09 03:39:59 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-07-09 03:39:59 +0000
commit4ff527903e890ac3768f6325b9a4ec9921b6be60 (patch)
tree21b302b49de8e9ca1e552e872aa97ab25f5d460d /pbx/pbx_realtime.c
parent6ddcd21a7f79fa56bfc32616aec42261f7aa7783 (diff)
Code wasn't ready to be merged - see -dev list discussion
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@129307 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_realtime.c')
-rw-r--r--pbx/pbx_realtime.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pbx/pbx_realtime.c b/pbx/pbx_realtime.c
index 7f99ff733..536ed9d27 100644
--- a/pbx/pbx_realtime.c
+++ b/pbx/pbx_realtime.c
@@ -226,9 +226,8 @@ static int realtime_exec(struct ast_channel *chan, const char *context, const ch
"Priority: %d\r\n"
"Application: %s\r\n"
"AppData: %s\r\n"
- "Uniqueid: %s\r\n"
- "AGIstate: %s\r\n",
- chan->name, chan->context, chan->exten, chan->priority, app, !ast_strlen_zero(appdata) ? appdata : "(NULL)", chan->uniqueid, ast_agi_state(chan));
+ "Uniqueid: %s\r\n",
+ chan->name, chan->context, chan->exten, chan->priority, app, !ast_strlen_zero(appdata) ? appdata : "(NULL)", chan->uniqueid);
res = pbx_exec(chan, a, appdata);
} else