@@ -915,7 +915,7 @@ public class ExamServiceImpl implements ExamService {
if (null != clientIp) {
// IP取前三段
clientIp = clientIp.substring(0, clientIp.lastIndexOf(".") + 1);
- if (!realIp.startsWith(clientIp)) {
+ if (realIp.startsWith(clientIp)) {
return false;
}