suppress exceptions with extra krb auth options

- unsure yet whether this is really needed

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2022-01-06 09:53:30 +01:00
commit ab262dd706
No known key found for this signature in database
GPG key ID: 7424F1874854DF23

View file

@ -106,7 +106,11 @@ class KerberosApacheAuth extends KerberosAuth implements IAuth {
public function setExtraSmbClientOptions($smbClientState): void {
$this->init();
parent::setExtraSmbClientOptions($smbClientState);
try {
parent::setExtraSmbClientOptions($smbClientState);
} catch (Exception $e) {
// suppress
}
}
public function __destruct() {