[svn-commits] qwell: trunk r259617 - /trunk/res/res_agi.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Apr 27 17:47:39 CDT 2010


Author: qwell
Date: Tue Apr 27 17:47:36 2010
New Revision: 259617

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=259617
Log:
Fix compile on systems without HAVE_NULLSAFE_PRINTF defined.

Modified:
    trunk/res/res_agi.c

Modified: trunk/res/res_agi.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_agi.c?view=diff&rev=259617&r1=259616&r2=259617
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Tue Apr 27 17:47:36 2010
@@ -3804,7 +3804,7 @@
 	if (noop_command.usage == NULL) {
 		res = AST_TEST_FAIL;
 	}
-	if (noop_command.description == NULL) {
+	if (noop_command.syntax == NULL) {
 		res = AST_TEST_FAIL;
 	}
 #endif




More information about the svn-commits mailing list