summaryrefslogtreecommitdiffstats
path: root/base/common/src/com
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2012-07-31 00:45:47 -0400
committerAde Lee <alee@redhat.com>2012-07-31 16:36:04 -0400
commitcff349cd4d2175eb920f9cab4998b4c3bfd0550a (patch)
tree4ee12431333099858ae463aed8cb6d126b111bf3 /base/common/src/com
parentf589cc1e267d6d7b67a6463b4495b7a9c982669f (diff)
downloadpki-cff349cd4d2175eb920f9cab4998b4c3bfd0550a.tar.gz
pki-cff349cd4d2175eb920f9cab4998b4c3bfd0550a.tar.xz
pki-cff349cd4d2175eb920f9cab4998b4c3bfd0550a.zip
selinux policy changes to use standard ports
Selinux policy has been changed to use standard tomcat ports. Corresponding changes have been made in the pki-deploy scripts. Minor change in config script for password check.
Diffstat (limited to 'base/common/src/com')
-rw-r--r--base/common/src/com/netscape/cms/servlet/csadmin/SystemConfigurationResourceService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/common/src/com/netscape/cms/servlet/csadmin/SystemConfigurationResourceService.java b/base/common/src/com/netscape/cms/servlet/csadmin/SystemConfigurationResourceService.java
index 7c0c14969..9747eb12c 100644
--- a/base/common/src/com/netscape/cms/servlet/csadmin/SystemConfigurationResourceService.java
+++ b/base/common/src/com/netscape/cms/servlet/csadmin/SystemConfigurationResourceService.java
@@ -873,7 +873,7 @@ public class SystemConfigurationResourceService extends CMSResourceService imple
throw new CMSException(Response.Status.BAD_REQUEST, "Invalid key backup file name");
}
- if ((data.getBackupPassword() == null) || (data.getBackupPassword().length()<=8)) {
+ if ((data.getBackupPassword() == null) || (data.getBackupPassword().length()<8)) {
throw new CMSException(Response.Status.BAD_REQUEST, "key backup password must be at least 8 characters");
}
} else {