From cff349cd4d2175eb920f9cab4998b4c3bfd0550a Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Tue, 31 Jul 2012 00:45:47 -0400 Subject: 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. --- .../cms/servlet/csadmin/SystemConfigurationResourceService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/src/com') 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 { -- cgit