mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-25 18:35:17 +00:00
daemon/socket_connection: only define S_IRWXG and S_IRWXO on demand
This commit is contained in:
parent
aaef358bb1
commit
33845bfee4
@ -84,7 +84,13 @@ struct sockaddr_un {
|
||||
char sun_path[UNIX_PATH_MAX];
|
||||
};
|
||||
//
|
||||
#endif
|
||||
|
||||
// has been missing on mingw32 in the past
|
||||
#ifndef S_IRWXG
|
||||
#define S_IRWXG 0
|
||||
#endif
|
||||
#ifndef S_IRWXO
|
||||
#define S_IRWXO 0
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user