[asterisk-commits] lmadsen: trunk r264161 - /trunk/main/cli.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 19 10:39:43 CDT 2010
Author: lmadsen
Date: Wed May 19 10:39:39 2010
New Revision: 264161
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=264161
Log:
Fix compilation problem with previous commit.
(issue #16009)
Modified:
trunk/main/cli.c
Modified: trunk/main/cli.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/cli.c?view=diff&rev=264161&r1=264160&r2=264161
==============================================================================
--- trunk/main/cli.c (original)
+++ trunk/main/cli.c Wed May 19 10:39:39 2010
@@ -952,7 +952,7 @@
if (!strcasecmp(a->argv[3], "all")) {
struct ast_channel_iterator *iter = NULL;
- if (!(iter = ast_channel_iterator_all_new(0))) {
+ if (!(iter = ast_channel_iterator_all_new())) {
return CLI_FAILURE;
}
for (; iter && (c = ast_channel_iterator_next(iter)); ast_channel_unref(c)) {
More information about the asterisk-commits
mailing list