Skip to content

Commit 4a36dd0

Browse files
committed
fix
1 parent 52633f8 commit 4a36dd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Network/Network/Cortex/VpnServerConfiguration/VpnServerConfigurationBaseCmdlet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ public PSVpnServerConfiguration CreateVpnServerConfigurationObject(
173173
// VpnAuthenticationType = Radius related validations.
174174
else if (vpnAuthenticationType.Contains(MNM.VpnAuthenticationType.Radius))
175175
{
176-
if (vpnServerConfiguration.RadiusServerAddress != null)
176+
if (radiusServerAddress != null)
177177
{
178178
vpnServerConfiguration.RadiusServerAddress = radiusServerAddress;
179179
}
180180

181-
if (vpnServerConfiguration.RadiusServerSecret != null)
181+
if (radiusServerSecret != null)
182182
{
183183
vpnServerConfiguration.RadiusServerSecret = SecureStringExtensions.ConvertToString(radiusServerSecret);
184184
}

0 commit comments

Comments
 (0)