From 15d537d27c0116138191b0a60ac03b54eb00d4e5 Mon Sep 17 00:00:00 2001
From: coulbeck <coulbeck@localhost>
Date: Wed, 07 Feb 2007 16:51:16 +0000
Subject: [PATCH] An extra synchronization unit test and a number of bug fixes for attributes with options.

---
 opends/src/server/org/opends/server/synchronization/plugin/HistVal.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/synchronization/plugin/HistVal.java b/opends/src/server/org/opends/server/synchronization/plugin/HistVal.java
index b43458c..ed4c600 100644
--- a/opends/src/server/org/opends/server/synchronization/plugin/HistVal.java
+++ b/opends/src/server/org/opends/server/synchronization/plugin/HistVal.java
@@ -89,7 +89,7 @@
       String[] optionsToken = token[0].split(";");
       options = new HashSet<String>();
       int index = 1;
-      while (optionsToken[index] != null)
+      while (index < optionsToken.length)
       {
         options.add(optionsToken[index]);
         index ++;

--
Gitblit v1.10.0