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

matthew_swift
25.03.2006 09fcb137f6d46e0c32f03b0313ac445a2ee7ecc3
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);