Skip to content
Snippets Groups Projects
Commit c20bf182 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Merge pull request #332 from tvdijen/master

Fix missing argument
parents 69f67dc3 96099a81
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ EOF;
if (!$this->ldap->bind($this->admin_user, $this->admin_pw)) {
$msg = 'Unable to authenticate system user (LDAP_INVALID_CREDENTIALS) '.var_export($this->admin_user, true);
SimpleSAML_Logger::error('Negotiate - authenticate(): '.$msg);
throw new SimpleSAML_Error_AuthSource($msg);
throw new SimpleSAML_Error_AuthSource('negotiate', $msg);
}
}
......
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