summaryrefslogtreecommitdiffstats
path: root/recipes-security/libgssglue/files/libgssglue-g-initialize.patch
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2022-09-25 13:27:39 -0400
committerArmin Kuster <akuster808@gmail.com>2022-09-25 13:37:57 -0400
commitb29ce7d47d8024151177113221bf87dbd07b9c41 (patch)
treee018316d5fee8336d53285e34b6b595f06b78d21 /recipes-security/libgssglue/files/libgssglue-g-initialize.patch
parent852daaf67b4f548beca959dea10baf6a20ffad6a (diff)
downloadmeta-security-b29ce7d47d8024151177113221bf87dbd07b9c41.tar.gz
libgssglue: update to 0.7
LIC_FILE_CHKSUM changes to to indentations changes. use bootstrap to setup config properly. Drop libgssglue-fix-CVE-2011-2709.patch, libgssglue-g-initialize.patch now included in update. and ibgssglue-mglueP.patch now included in update. Drop libgssglue-gss-inq-cred.patch still pending after 5 yrs. Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'recipes-security/libgssglue/files/libgssglue-g-initialize.patch')
-rw-r--r--recipes-security/libgssglue/files/libgssglue-g-initialize.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/recipes-security/libgssglue/files/libgssglue-g-initialize.patch b/recipes-security/libgssglue/files/libgssglue-g-initialize.patch
deleted file mode 100644
index 4a9ba33..0000000
--- a/recipes-security/libgssglue/files/libgssglue-g-initialize.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Fix the warning for getuid, geteuid
2g_initialize.c: In function 'linux_initialize':
3g_initialize.c:275:5: warning: implicit declaration of function 'getuid' [-Wimplicit-function-declaration]
4g_initialize.c:275:5: warning: implicit declaration of function 'geteuid' [-Wimplicit-function-declaration]
5
6Upstream-Status: Pending
7Signed-off-by: Yao Zhao <yao.zhao@windriver.com>
8
9diff --git a/src/g_initialize.c b/src1/g_initialize.c
10index 82fcce1..200f173 100644
11--- a/src/g_initialize.c
12+++ b/src/g_initialize.c
13@@ -29,6 +29,8 @@
14 #include "mglueP.h"
15 #include <stdlib.h>
16
17+#include <unistd.h> /*getuid, geteuid */
18+#include <sys/types.h>
19 #include <stdio.h>
20 #include <string.h>
21 #include <ctype.h>