[svn-commits] russell: branch group/security_events r201180 - /team/group/security_events/i...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 16 16:26:18 CDT 2009


Author: russell
Date: Tue Jun 16 16:26:12 2009
New Revision: 201180

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=201180
Log:
properly define a bit field

Modified:
    team/group/security_events/include/asterisk/security_events_defs.h

Modified: team/group/security_events/include/asterisk/security_events_defs.h
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/security_events/include/asterisk/security_events_defs.h?view=diff&rev=201180&r1=201179&r2=201180
==============================================================================
--- team/group/security_events/include/asterisk/security_events_defs.h (original)
+++ team/group/security_events/include/asterisk/security_events_defs.h Tue Jun 16 16:26:12 2009
@@ -125,9 +125,9 @@
  */
 enum ast_security_event_severity {
 	/*! \brief Informational event, not something that has gone wrong */
-	AST_SECURITY_EVENT_SEVERITY_INFO  = 0,
+	AST_SECURITY_EVENT_SEVERITY_INFO  = (1 << 0),
 	/*! \brief Something has gone wrong */
-	AST_SECURITY_EVENT_SEVERITY_ERROR = (1 << 0),
+	AST_SECURITY_EVENT_SEVERITY_ERROR = (1 << 1),
 };
 
 /*!




More information about the svn-commits mailing list