diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-08-17 07:40:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:00 -0500 |
commit | c7088e5e3caae0d5210781125ac8db650d7fb91c (patch) | |
tree | 5dc4073b3391edc42f9f0b13fa35e2459e3e5236 /source4 | |
parent | d3e8a74551746f3326fceeb55565bd95b1990b4f (diff) | |
download | samba-c7088e5e3caae0d5210781125ac8db650d7fb91c.tar.gz samba-c7088e5e3caae0d5210781125ac8db650d7fb91c.tar.bz2 samba-c7088e5e3caae0d5210781125ac8db650d7fb91c.zip |
r1842: add fault code that happens with wrong password
or when signing or sealing fails
DCERPC_FAULT_LOGON_FAILURE = 0x00000005;
metze
(This used to be commit 6ed2ce4edca9dbdb30e52e83d62227656d671a29)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/dcerpc.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/librpc/idl/dcerpc.idl b/source4/librpc/idl/dcerpc.idl index 3618dfbb61..8ab20be760 100644 --- a/source4/librpc/idl/dcerpc.idl +++ b/source4/librpc/idl/dcerpc.idl @@ -87,6 +87,7 @@ interface dcerpc const int DCERPC_FAULT_INVALID_TAG = 0x1c000006; const int DCERPC_FAULT_CONTEXT_MISMATCH = 0x1c00001a; const int DCERPC_FAULT_OTHER = 0x00000001; + const int DCERPC_FAULT_LOGON_FAILURE = 0x00000005; /* we return this fault when we haven't yet run the test to see what fault w2k3 returns in this case */ |