summaryrefslogtreecommitdiff
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2010-04-27 22:47:36 +0000
committerJason Parker <jparker@digium.com>2010-04-27 22:47:36 +0000
commit7f5a3370addb048ad828f9b237264fb20e2b44af (patch)
tree9b23808c6ac920bf1a5ada0bc0b81bedbdff53d1 /res/res_agi.c
parent0da0e3856cdd0d55bb13b86ca724e0cbd854d539 (diff)
Fix compile on systems without HAVE_NULLSAFE_PRINTF defined.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@259617 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index d0ba17e8d..466572423 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -3804,7 +3804,7 @@ AST_TEST_DEFINE(test_agi_null_docs)
if (noop_command.usage == NULL) {
res = AST_TEST_FAIL;
}
- if (noop_command.description == NULL) {
+ if (noop_command.syntax == NULL) {
res = AST_TEST_FAIL;
}
#endif