From 6df25e5d0f58a014794aa27c96ac12a6564e18ee Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Fri, 27 Jul 2007 15:11:04 +0000
Subject: [PATCH] corrected category bit mask sequence
---
opends/src/server/org/opends/server/messages/MessageHandler.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/MessageHandler.java b/opends/src/server/org/opends/server/messages/MessageHandler.java
index 3507106..cb3968c 100644
--- a/opends/src/server/org/opends/server/messages/MessageHandler.java
+++ b/opends/src/server/org/opends/server/messages/MessageHandler.java
@@ -65,7 +65,7 @@
* <LI>00C -- Access Control</LI>
* <LI>00D -- Administration framework</LI>
* <LI>00E -- Synchronization</LI>
- * <LI>00E -- Version Compatibility (Flag Days)</LI>
+ * <LI>00F -- Version Compatibility (Flag Days)</LI>
* <LI>800 through FFE -- Reserved for third-party modules</LI>
* <LI>FFF -- User-defined processing</LI>
* </UL>
@@ -192,12 +192,12 @@
/**
* The category bitmask used for messages associated with the Synchronization.
*/
- public static final int CATEGORY_MASK_SYNC = 0x0E000000;
+ public static final int CATEGORY_MASK_SYNC = 0x00E00000;
/**
* The category bitmask used for messages associated with flag day messages.
*/
- public static final int CATEGORY_MASK_VERSION_COMPATIBITY_ISSUES = 0x0F000000;
+ public static final int CATEGORY_MASK_VERSION_COMPATIBITY_ISSUES = 0x00F00000;
/**
* The category bitmask that will be used for messages associated with
--
Gitblit v1.10.0