Skip to content
Snippets Groups Projects
Commit 8c68e019 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Remove unreachable code.

parent 528c36f4
No related branches found
No related tags found
No related merge requests found
......@@ -144,8 +144,6 @@ if($toStdOut) {
$metaloader->writeMetadataFiles($outputDir);
}
exit(0);
/**
* This function prints the help output.
*/
......@@ -178,8 +176,3 @@ function printHelp() {
echo(' seperate files in the output directory.' . "\n");
echo("\n");
}
......@@ -160,9 +160,7 @@ class sspmod_negotiate_Auth_Source_Negotiate extends SimpleSAML_Auth_Source {
if (array_key_exists('negotiate:disable', $spMetadata)) {
if ($spMetadata['negotiate:disable'] == TRUE) {
SimpleSAML_Logger::debug('Negotiate - SP disabled. falling back');
return True;
// Never executed
assert('FALSE');
return true;
} else {
SimpleSAML_Logger::debug('Negotiate - SP disable flag found but set to FALSE');
}
......
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