From 4be3750d8e5edb849cf946def10891e0d4dd16d0 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 9 Nov 2002 14:48:27 +0000 Subject: deldriver fix (This used to be commit f20de1f9b0dcac15fbf968e6d5d5af2fdd5fbda1) --- source3/include/nt_status.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/include') diff --git a/source3/include/nt_status.h b/source3/include/nt_status.h index 1c80c5ecde..9747f73eb1 100644 --- a/source3/include/nt_status.h +++ b/source3/include/nt_status.h @@ -58,5 +58,6 @@ typedef uint32 WERROR; #define NT_STATUS_IS_ERR(x) ((NT_STATUS_V(x) & 0xc0000000) == 0xc0000000) #define NT_STATUS_EQUAL(x,y) (NT_STATUS_V(x) == NT_STATUS_V(y)) #define W_ERROR_IS_OK(x) (W_ERROR_V(x) == 0) +#define W_ERROR_EQUAL(x,y) (W_ERROR_V(x) == W_ERROR_V(y)) #endif -- cgit