From 118318842266d6465758a7cc026babd60ff9ac7b Mon Sep 17 00:00:00 2001
From: coulbeck <coulbeck@localhost>
Date: Mon, 30 Apr 2007 16:02:58 +0000
Subject: [PATCH] Correct pluralization of policy in password policy configuration.

---
 opends/src/server/org/opends/server/core/PasswordPolicyConfigManager.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/PasswordPolicyConfigManager.java b/opends/src/server/org/opends/server/core/PasswordPolicyConfigManager.java
index c966af0..2a2d7ce 100644
--- a/opends/src/server/org/opends/server/core/PasswordPolicyConfigManager.java
+++ b/opends/src/server/org/opends/server/core/PasswordPolicyConfigManager.java
@@ -92,12 +92,12 @@
          managementContext.getRootConfiguration();
 
     // Register as an add and delete listener with the root configuration so we
-    // can be notified if any password ploicies entries are added or removed.
+    // can be notified if any password policy entries are added or removed.
     rootConfiguration.addPasswordPolicyAddListener(this);
     rootConfiguration.addPasswordPolicyDeleteListener(this);
 
     // First, get the configuration base entry.
-    String[] passwordPoliciesName = rootConfiguration.listPasswordPolicys() ;
+    String[] passwordPoliciesName = rootConfiguration.listPasswordPolicies() ;
 
     // See if the base entry has any children.  If not, then that means that
     // there are no policies defined, so that's a problem.

--
Gitblit v1.10.0