diff options
author | Volker Lendecke <vl@samba.org> | 2011-12-23 21:41:03 +0100 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-12-23 23:19:17 +0100 |
commit | d4e834ec6c8005b8a517185a46ab18d8343b7313 (patch) | |
tree | b21092cc1fcadbf60f51dff8becb5ee563bf66fb /libcli | |
parent | 4a1895eb9921ad533910d08823c2814c470875fd (diff) | |
download | samba-d4e834ec6c8005b8a517185a46ab18d8343b7313.tar.gz |
lib: Fix NT_STATUS_ALL_SIDS_FILTERED definition
This seems to be more in line with all the other NT_STATUS definitions.
Metze, please check.
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Fri Dec 23 23:19:17 CET 2011 on sn-devel-104
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/util/ntstatus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/util/ntstatus.h b/libcli/util/ntstatus.h index f79363b8284..af4ab6a2122 100644 --- a/libcli/util/ntstatus.h +++ b/libcli/util/ntstatus.h @@ -604,7 +604,7 @@ typedef uint32_t NTSTATUS; #define NT_STATUS_OBJECTID_NOT_FOUND NT_STATUS(0xC0000000 | 0x02F0) #define NT_STATUS_NO_SUCH_JOB NT_STATUS(0xC0000000 | 0xEDE) /* scheduler */ #define NT_STATUS_NETWORK_SESSION_EXPIRED NT_STATUS(0xC0000000 | 0x035C) -#define NT_STATUS_ALL_SIDS_FILTERED NT_STATUS(0xC00000000 | 0x035E) +#define NT_STATUS_ALL_SIDS_FILTERED NT_STATUS(0xC0000000 | 0x035E) #define NT_STATUS_DOWNGRADE_DETECTED NT_STATUS(0xC0000000 | 0x0388) #define NT_STATUS_NO_S4U_PROT_SUPPORT NT_STATUS(0xC0000000 | 0x040A) #define NT_STATUS_CROSSREALM_DELEGATION_FAILURE NT_STATUS(0xC0000000 | 0x040B) |