mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-197: Fix build issue introduced by moving variable context.
This commit is contained in:
@@ -128,12 +128,11 @@ public class RadiusConnectionService {
|
|||||||
|
|
||||||
// Pull TLS configuration parameters from guacamole.properties
|
// Pull TLS configuration parameters from guacamole.properties
|
||||||
LocalEnvironment guacEnv = new LocalEnvironment();
|
LocalEnvironment guacEnv = new LocalEnvironment();
|
||||||
String guacHome = guacEnv.getGuacamoleHome();
|
File guacHome = guacEnv.getGuacamoleHome();
|
||||||
String caFile = confService.getRadiusCAFile();
|
String caFile = confService.getRadiusCAFile();
|
||||||
String caPassword = confService.getRadiusCAPassword();
|
String caPassword = confService.getRadiusCAPassword();
|
||||||
String keyFile = confService.getRadiusKeyFile();
|
String keyFile = confService.getRadiusKeyFile();
|
||||||
String keyPassword = confService.getRadiusKeyPassword();
|
String keyPassword = confService.getRadiusKeyPassword();
|
||||||
String innerProtocol = confService.getRadiusEAPTTLSInnerProtocol();
|
|
||||||
|
|
||||||
if (caFile != null) {
|
if (caFile != null) {
|
||||||
((EAPTLSAuthenticator)radAuth).setCaFile((new File(guacHome, caFile)).toString());
|
((EAPTLSAuthenticator)radAuth).setCaFile((new File(guacHome, caFile)).toString());
|
||||||
@@ -152,6 +151,7 @@ public class RadiusConnectionService {
|
|||||||
|
|
||||||
// If we're using EAP-TTLS, we need to define tunneled protocol
|
// If we're using EAP-TTLS, we need to define tunneled protocol
|
||||||
if (radAuth instanceof EAPTTLSAuthenticator) {
|
if (radAuth instanceof EAPTTLSAuthenticator) {
|
||||||
|
String innerProtocol = confService.getRadiusEAPTTLSInnerProtocol();
|
||||||
if (innerProtocol == null)
|
if (innerProtocol == null)
|
||||||
throw new GuacamoleException("Trying to use EAP-TTLS, but no inner protocol specified.");
|
throw new GuacamoleException("Trying to use EAP-TTLS, but no inner protocol specified.");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user