From b6216d71efdfacb22294175731072c01dff9b079 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Wed, 22 Apr 2009 17:47:11 +0000
Subject: [PATCH] Fix issue 3602: In error logs, msgID is a negative number when using USER_DEFINED category

---
 opends/src/messages/src/org/opends/messages/Category.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/messages/src/org/opends/messages/Category.java b/opends/src/messages/src/org/opends/messages/Category.java
index 23427f4..f1fe723 100644
--- a/opends/src/messages/src/org/opends/messages/Category.java
+++ b/opends/src/messages/src/org/opends/messages/Category.java
@@ -170,13 +170,13 @@
    * The category that will be used for messages associated with
    * third-party (including user-defined) modules.
    */
-  THIRD_PARTY(0x80000000),
+  THIRD_PARTY(0x40000000),
 
   /**
    * The category that will be used for messages associated with
    * user-defined modules.
    */
-  USER_DEFINED(0xFFF00000);
+  USER_DEFINED(0x7FF00000);
 
   static private Map<Integer,Category> MASK_VALUE_MAP;
 

--
Gitblit v1.10.0