diff options
author | Gerald Carter <jerry@samba.org> | 2002-11-09 14:49:26 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-11-09 14:49:26 +0000 |
commit | cda79e5d36711317f055f3724c354fec000be86a (patch) | |
tree | 0afcb1b3b48f7d8f569460d342ebf0a9bf5e5b06 /source3/include | |
parent | 2d08c914d782087ab0360aed9387ec1524d273d6 (diff) | |
download | samba-cda79e5d36711317f055f3724c354fec000be86a.tar.gz samba-cda79e5d36711317f055f3724c354fec000be86a.tar.bz2 samba-cda79e5d36711317f055f3724c354fec000be86a.zip |
deldriver fix
(This used to be commit 78ff2cc34aedaf82d965a71e0c9dfdeb86a90fdd)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/nt_status.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |