From 6b075983e85d98a1a2ad1c599675ccd8ac769fcf Mon Sep 17 00:00:00 2001 From: 0xdcarns Date: Tue, 22 Feb 2022 14:57:37 -0500 Subject: [PATCH] noticed wrong var --- servercfg/serverconf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servercfg/serverconf.go b/servercfg/serverconf.go index ac84d48f..e5fa6a19 100644 --- a/servercfg/serverconf.go +++ b/servercfg/serverconf.go @@ -97,7 +97,7 @@ func GetServerConfig() config.ServerConfig { cfg.CommsCIDR = GetCommsCIDR() services := strings.Join(GetPortForwardServiceList(), ",") cfg.PortForwardServices = services - cfg.CommsID = GetCommsCIDR() + cfg.CommsID = GetCommsID() return cfg }