From f5a5b5c28b44799ed3ca17399a4a25a0012c09b9 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 14 Aug 2006 15:03:51 +0000
Subject: [PATCH] Fix the error message that is returned if a user attempts to use an invalid value for the ds-cfg-time-limit configuration attribute.  The error message was correct originally, but the attribute was changed to require a time unit and the message was no longer valid.

---
 opends/src/server/org/opends/server/messages/ConfigMessages.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/messages/ConfigMessages.java b/opends/src/server/org/opends/server/messages/ConfigMessages.java
index 2c6d37e..ac35bc7 100644
--- a/opends/src/server/org/opends/server/messages/ConfigMessages.java
+++ b/opends/src/server/org/opends/server/messages/ConfigMessages.java
@@ -6645,9 +6645,9 @@
     registerMessage(MSGID_CONFIG_CORE_INVALID_TIME_LIMIT,
                     "Configuration entry %s has an invalid value for " +
                     "configuration attribute " + ATTR_TIME_LIMIT +
-                    " (it should be the a positive integer value specifying " +
-                    "the time limit in seconds, or -1 to indicate that no " +
-                    "limit should be enforced):  %s.");
+                    " (it should be an integer value followed by a space " +
+                    "and a time unit of seconds, minutes, hours, days, or " +
+                    "weeks):  %s.");
     registerMessage(MSGID_CONFIG_CORE_DESCRIPTION_WRITABILITY_MODE,
                     "Specifies the writability mode for the Directory " +
                     "Server.  The value may be one of \"enabled\", " +

--
Gitblit v1.10.0