File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/main/java/org/linktechtips Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ GPL-3.0第7节中的附加条款
2222* 更稳定的FSD
2323* ECHO防崩溃
2424* 用户上下线记录
25- ## 待实现功能
2625* 使用mySQL作为cert数据库
26+ ## 待实现功能
2727* 内置PDC
2828* 内置语音实现
2929* Remark同步
Original file line number Diff line number Diff line change @@ -602,14 +602,13 @@ private void makeConnections() {
602602 centry = cgroup .getEntry ("allowfrom" );
603603 if (centry != null ) {
604604 /* Allow the configured servers */
605- int nParts = centry .getNParts ();
606- for (int x = 0 ; x < nParts ; x ++) {
605+ int x , nParts = centry .getNParts ();
606+ for (x = 0 ; x < nParts ; x ++) {
607607 serverInterface .allow (centry .getPart (x ));
608608 }
609609 } else {
610610 LOGGER .warn ("[BetterFSD]: No 'allowfrom' found, allowing everybody on the server port" );
611611 }
612-
613612 serverInterface .sendReset ();
614613 }
615614}
You can’t perform that action at this time.
0 commit comments