1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

Cedar: fix ProtoSetUdpPorts() call in SiLoadServerCfg()

I accidentally passed the wrong variable in 4514ba5e2f.
This commit is contained in:
Davide Beatrici 2020-07-03 01:29:45 +02:00
parent b60844e276
commit 45399d9797

View File

@ -5691,7 +5691,7 @@ void SiLoadServerCfg(SERVER *s, FOLDER *f)
} }
ReleaseIntList(ports); ReleaseIntList(ports);
ProtoSetUdpPorts(s->Proto, ports); ProtoSetUdpPorts(s->Proto, s->PortsUDP);
} }
{ {
RPC_KEEP k; RPC_KEEP k;