修正拦截策略ssl版本校验

This commit is contained in:
wangwei
2019-06-08 22:14:14 +08:00
parent a821ca4364
commit 3247d6fc9e
6 changed files with 6 additions and 6 deletions

View File

@@ -755,7 +755,7 @@ public class CheckIpFormatThread implements Callable<String>{
errInfo.append(String.format(prop.getProperty("is_incorrect"),
prop.getProperty("ssl_ver_max","max SSL version") + " ") + ";");
}
if(minSort>=maxSort) {
if(minSort>maxSort) {
errInfo.append(prop.getProperty("min_should_less_than_max","the min SSL version should less than the max SSL version") + ";");
}
map.put("min", min);

View File

@@ -703,7 +703,7 @@ public class CheckStringFormatThread implements Callable<String>{
errInfo.append(String.format(prop.getProperty("is_incorrect"),
prop.getProperty("ssl_ver_max","max SSL version") + " ") + ";");
}
if(minSort>=maxSort) {
if(minSort>maxSort) {
errInfo.append(prop.getProperty("min_should_less_than_max","the min SSL version should less than the max SSL version") + ";");
}
map.put("min", min);