修正拦截策略ssl版本校验
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user