mirror of
https://github.com/hashcat/hashcat.git
synced 2025-04-29 21:49:08 +00:00
Force #pragma pack(1) for struct hccapx
This commit is contained in:
parent
65d5921eda
commit
c1f0adebe6
@ -812,6 +812,9 @@ typedef struct struct_psafe2_hdr
|
|||||||
|
|
||||||
#define HCCAPX_SIGNATURE 0x58504348 // HCPX
|
#define HCCAPX_SIGNATURE 0x58504348 // HCPX
|
||||||
|
|
||||||
|
// this is required to force mingw to accept the packed attribute
|
||||||
|
#pragma pack(push,1)
|
||||||
|
|
||||||
struct hccapx
|
struct hccapx
|
||||||
{
|
{
|
||||||
u32 signature;
|
u32 signature;
|
||||||
@ -832,6 +835,8 @@ struct hccapx
|
|||||||
|
|
||||||
typedef struct hccapx hccapx_t;
|
typedef struct hccapx hccapx_t;
|
||||||
|
|
||||||
|
#pragma pack(pop)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hashtypes enums
|
* hashtypes enums
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user