[asterisk-commits] tilghman: branch 1.4 r238915 - /branches/1.4/main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jan 8 18:58:03 CST 2010
Author: tilghman
Date: Fri Jan 8 18:57:58 2010
New Revision: 238915
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=238915
Log:
-1 is interpreted as an error, intead of the maximum mask.
(closes issue #16241)
Reported by: vnovy
Patches:
manager.c.patch uploaded by vnovy (license 922)
Modified:
branches/1.4/main/manager.c
Modified: branches/1.4/main/manager.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/main/manager.c?view=diff&rev=238915&r1=238914&r2=238915
==============================================================================
--- branches/1.4/main/manager.c (original)
+++ branches/1.4/main/manager.c Fri Jan 8 18:57:58 2010
@@ -129,7 +129,7 @@
{ EVENT_FLAG_AGENT, "agent" },
{ EVENT_FLAG_USER, "user" },
{ EVENT_FLAG_CONFIG, "config" },
- { -1, "all" },
+ { INT_MAX, "all" },
{ 0, "none" },
};
More information about the asterisk-commits
mailing list