summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2002-11-09 14:48:27 +0000
committerGerald Carter <jerry@samba.org>2002-11-09 14:48:27 +0000
commit4be3750d8e5edb849cf946def10891e0d4dd16d0 (patch)
treea2af152220ddd2c4d16a7e9cf95b2df1b18c9ddd /source3/include
parentb3f55b37a09551b6e782e58b3339b9caa4086d6d (diff)
downloadsamba-4be3750d8e5edb849cf946def10891e0d4dd16d0.tar.gz
samba-4be3750d8e5edb849cf946def10891e0d4dd16d0.tar.bz2
samba-4be3750d8e5edb849cf946def10891e0d4dd16d0.zip
deldriver fix
(This used to be commit f20de1f9b0dcac15fbf968e6d5d5af2fdd5fbda1)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/nt_status.h1
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