1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

werror: Correct the error code checking

Broken in commit ea3c3f10ed

Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Garming Sam 2017-03-09 14:40:11 +13:00 committed by Andrew Bartlett
parent 372f5dd4a2
commit f1147106ef

View File

@ -2089,7 +2089,7 @@ class cmd_domain_trust_show(DomainTrustCommand):
local_tdo_forest = local_lsa.lsaRQueryForestTrustInformation(local_policy, local_tdo_forest = local_lsa.lsaRQueryForestTrustInformation(local_policy,
lsaString, lsa.LSA_FOREST_TRUST_DOMAIN_INFO) lsaString, lsa.LSA_FOREST_TRUST_DOMAIN_INFO)
except RuntimeError as error: except RuntimeError as error:
if self.check_runtime_error(error, self.NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE): if self.check_runtime_error(error, ntstatus.NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE):
error = None error = None
if self.check_runtime_error(error, ntstatus.NT_STATUS_NOT_FOUND): if self.check_runtime_error(error, ntstatus.NT_STATUS_NOT_FOUND):
error = None error = None