mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-20 13:23:57 -07:00
fix macos + freerdp
This commit is contained in:
parent
0749b9be9f
commit
593c5b151a
1 changed files with 9 additions and 0 deletions
|
@ -67,7 +67,16 @@ char proxy_string_type[MAX_PROXY_COUNT][10];
|
|||
char *proxy_authentication[MAX_PROXY_COUNT];
|
||||
char *cmdlinetarget;
|
||||
|
||||
#ifndef __APPLE__
|
||||
typedef int32_t BOOL;
|
||||
#else /* __APPLE__ */
|
||||
/* ensure compatibility with objc libraries */
|
||||
#if (TARGET_OS_IPHONE && __LP64__) || TARGET_OS_WATCH
|
||||
typedef bool BOOL;
|
||||
#else
|
||||
typedef signed char BOOL;
|
||||
#endif
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
#define hydra_report fprintf
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue