diff options
-rw-r--r-- | source/libsmb/nterr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/libsmb/nterr.c b/source/libsmb/nterr.c index 507bb60da4c..e874b80473c 100644 --- a/source/libsmb/nterr.c +++ b/source/libsmb/nterr.c @@ -650,9 +650,11 @@ const char *nt_errstr(NTSTATUS nt_code) static pstring msg; int idx = 0; +#ifdef HAVE_LDAP if (NT_STATUS_TYPE(nt_code) == NT_STATUS_TYPE_LDAP) { return ldap_err2string(NT_STATUS_LDAP_CODE(nt_code)); } +#endif slprintf(msg, sizeof(msg), "NT code 0x%08x", NT_STATUS_V(nt_code)); |