From 922f323ae4fa9ec584c5640af94a47517cb3cb41 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sat, 07 Oct 2006 21:27:37 +0000
Subject: [PATCH] Fix a problem in the modify operation in which it would not correctly reject an increment request where there were multiple increment values in the request from the client.
---
opends/src/server/org/opends/server/core/ModifyOperation.java | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/ModifyOperation.java b/opends/src/server/org/opends/server/core/ModifyOperation.java
index 40141c1..9622453 100644
--- a/opends/src/server/org/opends/server/core/ModifyOperation.java
+++ b/opends/src/server/org/opends/server/core/ModifyOperation.java
@@ -2067,6 +2067,7 @@
int msgID = MSGID_MODIFY_INCREMENT_REQUIRES_SINGLE_VALUE;
appendErrorMessage(getMessage(msgID, String.valueOf(entryDN),
a.getName()));
+ break modifyProcessing;
}
AttributeValue v = values.iterator().next();
--
Gitblit v1.10.0