We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52633f8 commit 4a36dd0Copy full SHA for 4a36dd0
src/Network/Network/Cortex/VpnServerConfiguration/VpnServerConfigurationBaseCmdlet.cs
@@ -173,12 +173,12 @@ public PSVpnServerConfiguration CreateVpnServerConfigurationObject(
173
// VpnAuthenticationType = Radius related validations.
174
else if (vpnAuthenticationType.Contains(MNM.VpnAuthenticationType.Radius))
175
{
176
- if (vpnServerConfiguration.RadiusServerAddress != null)
+ if (radiusServerAddress != null)
177
178
vpnServerConfiguration.RadiusServerAddress = radiusServerAddress;
179
}
180
181
- if (vpnServerConfiguration.RadiusServerSecret != null)
+ if (radiusServerSecret != null)
182
183
vpnServerConfiguration.RadiusServerSecret = SecureStringExtensions.ConvertToString(radiusServerSecret);
184
0 commit comments