diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-08-27 17:36:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:54 -0500 |
commit | cb3e14d5a2fe03439fcfa628b0e95dc2501bbd52 (patch) | |
tree | c158ff1aca2a40472436216e9b1658e5b989005a /source3 | |
parent | 4bbb995e8dab284b4deaa2e2ee38eb329305d1c2 (diff) | |
download | samba-cb3e14d5a2fe03439fcfa628b0e95dc2501bbd52.tar.gz samba-cb3e14d5a2fe03439fcfa628b0e95dc2501bbd52.tar.bz2 samba-cb3e14d5a2fe03439fcfa628b0e95dc2501bbd52.zip |
r17855: Fix the build on systems without LDAP
(This used to be commit 2e9f5c520a843ad22088388d155a172a63c140d5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/nterr.c | 2 |
1 files changed, 2 insertions, 0 deletions
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)); |