mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
25.03.2006 7edf8cbffc9e9e1637ec868a510498e2871fdbf0
opendj-sdk/opends/src/server/org/opends/server/synchronization/Historical.java
@@ -345,7 +345,7 @@
          String strValue;
          if (valInfo.getValueDeleteTime() != null)
          {
            strValue = type.getLowerName() + optionsString + ":" +
            strValue = type.getNormalizedPrimaryName() + optionsString + ":" +
            valInfo.getValueDeleteTime().toString() +
            ":del:" + valInfo.getValue().toString();
            AttributeValue val = new AttributeValue(historicalAttrType,
@@ -356,14 +356,14 @@
          {
            if (delAttr && valInfo.getValueUpdateTime() == deleteTime)
            {
              strValue = type.getLowerName() + optionsString + ":" +
              strValue = type.getNormalizedPrimaryName() + optionsString + ":" +
              valInfo.getValueUpdateTime().toString() +  ":repl:" +
              valInfo.getValue().toString();
              delAttr = false;
            }
            else
            {
              strValue = type.getLowerName() + optionsString + ":" +
              strValue = type.getNormalizedPrimaryName() + optionsString + ":" +
              valInfo.getValueUpdateTime().toString() +
              ":add:" + valInfo.getValue().toString();
            }
@@ -376,8 +376,9 @@
        if (delAttr)
        {
          String strValue = type.getLowerName() + optionsString + ":"
          + deleteTime.toString() + ":attrDel";
          String strValue = type.getNormalizedPrimaryName()
              + optionsString + ":" + deleteTime.toString()
              + ":attrDel";
          delAttr = false;
          AttributeValue val = new AttributeValue(historicalAttrType, strValue);
          hist.add(val);