diff options
author | Armin Kuster <akuster808@gmail.com> | 2022-06-09 16:11:29 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-06-18 06:48:22 -0700 |
commit | db3a3e87a6f6fcc424eb208bf37417ab3aeaf43a (patch) | |
tree | dfca042d5d71cdaedf3aea7d14cbd824a7ef7410 /dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch | |
parent | b67b4cf5cafa5fb0c13dddc344ed286e7e6fcc72 (diff) | |
download | meta-security-db3a3e87a6f6fcc424eb208bf37417ab3aeaf43a.tar.gz |
sssd:move to dynamic networking-layer
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch')
-rw-r--r-- | dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch b/dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch new file mode 100644 index 0000000..9b481cc --- /dev/null +++ b/dynamic-layers/networking-layer/recipes-security/sssd/files/fix_gid.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | from ../sssd-2.5.0/src/util/sss_pam_data.c:27: | ||
2 | | ../sssd-2.5.0/src/util/debug.h:88:44: error: unknown type name 'uid_t'; did you mean 'uint_t'? | ||
3 | | 88 | int chown_debug_file(const char *filename, uid_t uid, gid_t gid); | ||
4 | | | ^~~~~ | ||
5 | | | uint_t | ||
6 | | ../sssd-2.5.0/src/util/debug.h:88:55: error: unknown type name 'gid_t' | ||
7 | | 88 | int chown_debug_file(const char *filename, uid_t uid, gid_t gid); | ||
8 | | | ^~~~~ | ||
9 | | make[2]: *** [Makefile:22529: src/util/libsss_iface_la-sss_pam_data.lo] Error 1 | ||
10 | | make[2]: *** Waiting for unfinished jobs.... | ||
11 | |||
12 | Upstream-Status: Pending | ||
13 | Signed-off-by: Armin Kuster <akuster808@gmail.com> | ||
14 | |||
15 | Index: sssd-2.5.0/src/util/debug.h | ||
16 | =================================================================== | ||
17 | --- sssd-2.5.0.orig/src/util/debug.h | ||
18 | +++ sssd-2.5.0/src/util/debug.h | ||
19 | @@ -24,6 +24,8 @@ | ||
20 | #include "config.h" | ||
21 | |||
22 | #include <stdio.h> | ||
23 | +#include <unistd.h> | ||
24 | +#include <sys/types.h> | ||
25 | #include <stdbool.h> | ||
26 | |||
27 | #include "util/util_errors.h" | ||