SMB1: ImpersonationLevel: Corrected value of SECURITY_DELEGATION

This commit is contained in:
Tal Aloni 2017-09-09 12:36:02 +03:00
parent 83f3aab443
commit 02e29b7ff0

View file

@ -6,6 +6,6 @@ namespace SMBLibrary.SMB1
SEC_ANONYMOUS = 0x00,
SEC_IDENTIFY = 0x01,
SEC_IMPERSONATE = 0x02,
SECURITY_DELEGATION = 0x04, // SMB 1.0 addition
SECURITY_DELEGATION = 0x03, // SMB 1.0 addition
}
}