From 4517c49ade025cc4b0c27b4967ce19738ad7ca47 Mon Sep 17 00:00:00 2001 From: Ismael Luceno Date: Fri, 12 Nov 2021 19:39:35 +0100 Subject: [PATCH] server: Fix missing include for uid_t. Explicitly include 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 Signed-off-by: Alexandre Julliard (cherry picked from commit c35df50c307789a177d07e6c74b0be830dc59f1a) Signed-off-by: Michael Stefaniuc --- server/security.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/security.h b/server/security.h index 08bdb8de805..3b00553d199 100644 --- a/server/security.h +++ b/server/security.h @@ -21,6 +21,8 @@ #ifndef __WINE_SERVER_SECURITY_H #define __WINE_SERVER_SECURITY_H +#include + extern const LUID SeIncreaseQuotaPrivilege; extern const LUID SeSecurityPrivilege; extern const LUID SeTakeOwnershipPrivilege;