From 89694e669582d9e2e5a5710502194571397a162e Mon Sep 17 00:00:00 2001
From: david_page <david_page@localhost>
Date: Thu, 03 May 2007 16:43:23 +0000
Subject: [PATCH] Issue [1247] Password policy check and password encoding performed for internal and synchronization operations.
---
opends/src/server/org/opends/server/core/AddOperation.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/AddOperation.java b/opends/src/server/org/opends/server/core/AddOperation.java
index 54a3661..e550251 100644
--- a/opends/src/server/org/opends/server/core/AddOperation.java
+++ b/opends/src/server/org/opends/server/core/AddOperation.java
@@ -1352,12 +1352,12 @@
break addProcessing;
}
- // If it's not an internal or synchronization operation, then check
+ // If it's not a synchronization operation, then check
// to see if the entry contains one or more passwords and if they
// are valid in accordance with the password policies associated with
// the user. Also perform any encoding that might be required by
// password storage schemes.
- if (! (isInternalOperation() || isSynchronizationOperation()))
+ if (! isSynchronizationOperation())
{
// FIXME -- We need to check to see if the password policy subentry
// might be specified virtually rather than as a real
--
Gitblit v1.10.0