diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-04 10:57:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-04 10:57:29 +0000 |
commit | c76dd1404041f42d3a398339cefbeb60f22d2910 (patch) | |
tree | c5ad09bfcf50336adcaa860a1f3f0979a831b03f /source3/include | |
parent | b5b9c46c0fa3a98999f5afbda497e88a6d319151 (diff) | |
download | samba-c76dd1404041f42d3a398339cefbeb60f22d2910.tar.gz samba-c76dd1404041f42d3a398339cefbeb60f22d2910.tar.bz2 samba-c76dd1404041f42d3a398339cefbeb60f22d2910.zip |
it now all compiles - so try enabling it by default and see what explodes on the build farm
(This used to be commit 5bb7e4f0f65edf1db20245f403cbe81833134240)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 2974766f2a..cf455ca1e6 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -213,7 +213,7 @@ typedef struct nttime_info are mixed up. This is especially important as we slowly convert Samba from using BOOL for internal functions */ -#if defined(HAVE_IMMEDIATE_STRUCTURES) && defined(TRIDGE_TEST) +#if defined(HAVE_IMMEDIATE_STRUCTURES) typedef struct {uint32 v;} NTSTATUS; #define NT_STATUS(x) ((NTSTATUS) { x }) #define NT_STATUS_V(x) ((x).v) @@ -223,7 +223,7 @@ typedef uint32 NTSTATUS; #define NT_STATUS_V(x) (x) #endif -#if defined(HAVE_IMMEDIATE_STRUCTURES) && defined(TRIDGE_TEST) +#if defined(HAVE_IMMEDIATE_STRUCTURES) typedef struct {uint32 v;} WERROR; #define W_ERROR(x) ((WERROR) { x }) #define W_ERROR_V(x) ((x).v) |