19e63e55c9
- Fix double-free in KDC TGS processing (CVE-2023-39975) - Add support for "pac_privsvr_enctype" KDB string attribute Resolves: rhbz#2060421 Signed-off-by: Julien Rische <jrische@redhat.com>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From f9429a9944b056376a1ff06e84dbf7e94f0d3108 Mon Sep 17 00:00:00 2001
|
|
From: Julien Rische <jrische@redhat.com>
|
|
Date: Mon, 9 Jan 2023 22:39:52 +0100
|
|
Subject: [PATCH] [downstream] Do not set root as ksu file owner
|
|
|
|
Upstream Makefile uses the install command to set root as owner of the
|
|
ksu executable file. However, this is no longer supported on latest
|
|
versions of the Mock build environment.
|
|
|
|
In case of ksu, the owner, group, and mode are already set using %attr()
|
|
in the specfile.
|
|
---
|
|
src/config/pre.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/config/pre.in b/src/config/pre.in
|
|
index 7eaa2f351c..e9ae71471e 100644
|
|
--- a/src/config/pre.in
|
|
+++ b/src/config/pre.in
|
|
@@ -185,7 +185,7 @@ INSTALL_PROGRAM=@INSTALL_PROGRAM@ $(INSTALL_STRIP)
|
|
INSTALL_SCRIPT=@INSTALL_PROGRAM@
|
|
INSTALL_DATA=@INSTALL_DATA@
|
|
INSTALL_SHLIB=@INSTALL_SHLIB@
|
|
-INSTALL_SETUID=$(INSTALL) $(INSTALL_STRIP) -m 4755 -o root
|
|
+INSTALL_SETUID=$(INSTALL)
|
|
## This is needed because autoconf will sometimes define @exec_prefix@ to be
|
|
## ${prefix}.
|
|
prefix=@prefix@
|
|
--
|
|
2.41.0
|
|
|