From a35f8a47cca3dbdb584cad85c5aa61f27e0bf42a Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sat, 07 Oct 2006 02:48:40 +0000
Subject: [PATCH] Fix a bug that allows the server to overlook the fact that there are duplicate values in an LDAP attribute when converting to a core Attribute (it would silently discard the duplicate rather than rejecting it).
---
opends/src/server/org/opends/server/messages/CoreMessages.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/CoreMessages.java b/opends/src/server/org/opends/server/messages/CoreMessages.java
index b6ad186..57acb02 100644
--- a/opends/src/server/org/opends/server/messages/CoreMessages.java
+++ b/opends/src/server/org/opends/server/messages/CoreMessages.java
@@ -5928,7 +5928,8 @@
/**
* The message ID for the message that will be used if a modify operation does
- * not contain any modifications. This does not take any arguments.
+ * not contain any modifications. This takes a single argument, which is the
+ * DN of the entry to modify.
*/
public static final int MSGID_MODIFY_NO_MODIFICATIONS =
CATEGORY_MASK_CORE | SEVERITY_MASK_SEVERE_ERROR | 566;
--
Gitblit v1.10.0