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

boli
24.50.2006 bf7b61bf7e22fc0c1c0bf69255f44d0139c86937
opends/src/server/org/opends/server/core/SearchOperation.java
@@ -797,7 +797,7 @@
    // See if the time limit has expired.  If so, then don't send the entry and
    // indicate that the search should end.
    if (TimeThread.getTime() >= timeLimitExpiration)
    if ((timeLimit > 0) && (TimeThread.getTime() >= timeLimitExpiration))
    {
      setResultCode(ResultCode.TIME_LIMIT_EXCEEDED);
      appendErrorMessage(getMessage(MSGID_SEARCH_TIME_LIMIT_EXCEEDED,
@@ -1242,7 +1242,7 @@
    // See if the time limit has expired.  If so, then don't send the entry and
    // indicate that the search should end.
    if (TimeThread.getTime() >= timeLimitExpiration)
    if ((timeLimit > 0) && (TimeThread.getTime() >= timeLimitExpiration))
    {
      setResultCode(ResultCode.TIME_LIMIT_EXCEEDED);
      appendErrorMessage(getMessage(MSGID_SEARCH_TIME_LIMIT_EXCEEDED,