Andrew Geissler | a1a6aef | 2021-06-25 14:23:58 -0500 | [diff] [blame] | 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" |