From 44b728958ae9a48bb56591532e5db9867311c1b9 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 23 Oct 2008 15:35:21 +0200 Subject: Use common error definitions. --- libcli/util/ntstatus.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libcli/util/ntstatus.h') diff --git a/libcli/util/ntstatus.h b/libcli/util/ntstatus.h index b7195a41b4..bf03d51d02 100644 --- a/libcli/util/ntstatus.h +++ b/libcli/util/ntstatus.h @@ -632,7 +632,11 @@ NTSTATUS nt_status_string_to_code(const char *nt_status_str); #define NT_STATUS_IS_ERR(x) ((NT_STATUS_V(x) & 0xc0000000) == 0xc0000000) /* checking for DOS error mapping here is ugly, but unfortunately the alternative is a very intrusive rewrite of the torture code */ +#if _SAMBA_BUILD_ == 4 #define NT_STATUS_EQUAL(x,y) (NT_STATUS_IS_DOS(x)||NT_STATUS_IS_DOS(y)?ntstatus_dos_equal(x,y):NT_STATUS_V(x) == NT_STATUS_V(y)) +#else +#define NT_STATUS_EQUAL(x,y) (NT_STATUS_V(x) == NT_STATUS_V(y)) +#endif #define NT_STATUS_HAVE_NO_MEMORY(x) do { \ if (!(x)) {\ -- cgit