mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
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:
parent
c337508282
commit
ab262dd706
1 changed files with 5 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue