From cb3e14d5a2fe03439fcfa628b0e95dc2501bbd52 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 27 Aug 2006 17:36:17 +0000 Subject: r17855: Fix the build on systems without LDAP (This used to be commit 2e9f5c520a843ad22088388d155a172a63c140d5) --- source3/libsmb/nterr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c index 507bb60da4..e874b80473 100644 --- a/source3/libsmb/nterr.c +++ b/source3/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)); -- cgit