Module: wine Branch: master Commit: 24b680d3f172a568c9d5a7a080921e8b786e6701 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=24b680d3f172a568c9d5a7a0...
Author: Kai Blin kai.blin@gmail.com Date: Tue Aug 15 02:02:56 2006 +0200
secur32: Fix typo in ISC flags.
---
include/sspi.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/include/sspi.h b/include/sspi.h index 74050b5..621848d 100644 --- a/include/sspi.h +++ b/include/sspi.h @@ -276,9 +276,9 @@ #define ISC_REQ_CALL_LEVEL 0 #define ISC_REQ_FRAGMENT_SUPPLIED 0x00002000 #define ISC_REQ_EXTENDED_ERROR 0x00004000 #define ISC_REQ_STREAM 0x00008000 -#define ISC_REQ_INTEGRITY 0x00001000 -#define ISC_REQ_IDENTIFY 0x00002000 -#define ISC_REQ_NULL_SESSION 0x00004000 +#define ISC_REQ_INTEGRITY 0x00010000 +#define ISC_REQ_IDENTIFY 0x00020000 +#define ISC_REQ_NULL_SESSION 0x00040000 #define ISC_REQ_MANUAL_CRED_VALIDATION 0x00080000 #define ISC_REQ_RESERVED1 0x00100000 #define ISC_REQ_FRAGMENT_TO_FIT 0x00200000 @@ -299,9 +299,9 @@ #define ISC_RET_INTERMEDIATE_RETURN 0 #define ISC_RET_CALL_LEVEL 0x00002000 #define ISC_RET_EXTENDED_ERROR 0x00004000 #define ISC_RET_STREAM 0x00008000 -#define ISC_RET_INTEGRITY 0x00001000 -#define ISC_RET_IDENTIFY 0x00002000 -#define ISC_RET_NULL_SESSION 0x00004000 +#define ISC_RET_INTEGRITY 0x00010000 +#define ISC_RET_IDENTIFY 0x00020000 +#define ISC_RET_NULL_SESSION 0x00040000 #define ISC_RET_MANUAL_CRED_VALIDATION 0x00080000 #define ISC_RET_RESERVED1 0x00100000 #define ISC_RET_FRAGMENT_ONLY 0x00200000