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:
Ismael Luceno 2021-11-12 19:39:35 +01:00 committed by Michael Stefaniuc
parent 188c86e5f3
commit 4517c49ade
1 changed files with 2 additions and 0 deletions

View File

@ -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;