server: Fix missing include for uid_t.
Explicitly include <sys/types.h> to make uid_t available to users of
server/security.h.
This is a problem on musl, and possibly other non-glibc systems.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit c35df50c30
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
188c86e5f3
commit
4517c49ade
|
@ -21,6 +21,8 @@
|
|||
#ifndef __WINE_SERVER_SECURITY_H
|
||||
#define __WINE_SERVER_SECURITY_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
extern const LUID SeIncreaseQuotaPrivilege;
|
||||
extern const LUID SeSecurityPrivilege;
|
||||
extern const LUID SeTakeOwnershipPrivilege;
|
||||
|
|
Loading…
Reference in New Issue