summaryrefslogtreecommitdiffstats
path: root/recipes-security/selinux/libselinux/0003-libselinux-restore-drop-the-obsolete-LSF-transitiona.patch
blob: 39edb6c929efe7e0a425531ec9b5e8244f9a7c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From f33b426680492629d3d8ed664049cbe584f26f18 Mon Sep 17 00:00:00 2001
From: Renato Caldas <renato@calgera.com>
Date: Thu, 29 Jun 2023 13:59:11 +0100
Subject: [PATCH] libselinux: restore: drop the obsolete LSF transitional API.

The preferred way to enable LSF support on 32 bit systems is to define
_FILE_OFFSET_BITS=64 when building selinux.

Upstream-Status: Submitted [https://github.com/SELinuxProject/selinux/pull/401]

Signed-off-by: Renato Caldas <renato@calgera.com>
---
 src/selinux_restorecon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/selinux_restorecon.c b/src/selinux_restorecon.c
index bc6ed93..3bc0d8d 100644
--- a/src/selinux_restorecon.c
+++ b/src/selinux_restorecon.c
@@ -438,7 +438,7 @@ static int filespec_add(ino_t ino, const char *con, const char *file,
 	file_spec_t *prevfl, *fl;
 	uint32_t h;
 	int ret;
-	struct stat64 sb;
+	struct stat sb;
 
 	__pthread_mutex_lock(&fl_mutex);
 
@@ -452,7 +452,7 @@ static int filespec_add(ino_t ino, const char *con, const char *file,
 	for (prevfl = &fl_head[h], fl = fl_head[h].next; fl;
 	     prevfl = fl, fl = fl->next) {
 		if (ino == fl->ino) {
-			ret = lstat64(fl->file, &sb);
+			ret = lstat(fl->file, &sb);
 			if (ret < 0 || sb.st_ino != ino) {
 				freecon(fl->con);
 				free(fl->file);
-- 
2.25.1