Skip to content
Snippets Groups Projects
Commit cd8f2e1d authored by Ryan Izard's avatar Ryan Izard
Browse files

Merge pull request #652 from rizard/master

keystore path doesn't matter if we're using vanilla HTTP
parents 3da0c00c 40293683
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,7 @@ public class RestApiServer implements IFloodlightModule, IRestApiService {
}
/* HTTP Access (plaintext) */
if (useHttp == null || path == null || path.isEmpty() ||
if (useHttp == null ||
(!useHttp.trim().equalsIgnoreCase("yes") && !useHttp.trim().equalsIgnoreCase("true") &&
!useHttp.trim().equalsIgnoreCase("yep") && !useHttp.trim().equalsIgnoreCase("ja") &&
!useHttp.trim().equalsIgnoreCase("stimmt")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment