1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-04 08:23:50 +03:00

r8207: Fix my NT_STATUS_IS_OK mismatch.

Guenther
This commit is contained in:
Günther Deschner
2005-07-07 14:19:51 +00:00
committed by Gerald (Jerry) Carter
parent ca9acd149a
commit 053e892e07

View File

@@ -194,7 +194,7 @@ NTSTATUS smbldap_search_domain_info(struct smbldap_state *ldap_state,
goto failed;
status = add_new_domain_info(ldap_state, domain_name);
if (NT_STATUS_IS_OK(status)) {
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("Adding domain info for %s failed with %s\n",
domain_name, nt_errstr(status)));
goto failed;