From 45399d9797dbf04219dd379d493f7be8a3d742d4 Mon Sep 17 00:00:00 2001 From: Davide Beatrici Date: Fri, 3 Jul 2020 01:29:45 +0200 Subject: [PATCH] Cedar: fix ProtoSetUdpPorts() call in SiLoadServerCfg() I accidentally passed the wrong variable in 4514ba5e2f597b3ecbedda2eee48bebf8ae693fe. --- src/Cedar/Server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cedar/Server.c b/src/Cedar/Server.c index 9d1efe94..21d375bb 100644 --- a/src/Cedar/Server.c +++ b/src/Cedar/Server.c @@ -5691,7 +5691,7 @@ void SiLoadServerCfg(SERVER *s, FOLDER *f) } ReleaseIntList(ports); - ProtoSetUdpPorts(s->Proto, ports); + ProtoSetUdpPorts(s->Proto, s->PortsUDP); } { RPC_KEEP k;