package/linux-pam: bump to version 1.6.1
Bump to latest version, fixing couple of bugs. Remove patch already
included in this release.
https://github.com/linux-pam/linux-pam/releases/tag/v1.6.1
Signed-off-by: Jan Čermák <sairon@sairon.cz>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 0d394c39b8
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
48275e431f
commit
4415daf635
@ -1,42 +0,0 @@
|
|||||||
From cc9d40b7cdbd3e15ccaa324a0dda1680ef9dea13 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jacob Heider <jacob@pkgx.dev>
|
|
||||||
Date: Wed, 17 Jan 2024 11:49:26 -0500
|
|
||||||
Subject: [PATCH] pam_namespace: include stdint.h
|
|
||||||
|
|
||||||
pam_namespace.c makes use of SIZE_MAX but doesn't include stdint.h,
|
|
||||||
resulting in the following build failures on 1.6.0:
|
|
||||||
|
|
||||||
pam_namespace.c: In function 'process_line':
|
|
||||||
pam_namespace.c:649:41: error: 'SIZE_MAX' undeclared (first use in this function)
|
|
||||||
649 | if (count > UINT_MAX || count > SIZE_MAX / sizeof(uid_t)) {
|
|
||||||
| ^~~~~~~~
|
|
||||||
pam_namespace.c:41:1: note: 'SIZE_MAX' is defined in header '<stdint.h>'; did you forget to '#include <stdint.h>'?
|
|
||||||
40 | #include "argv_parse.h"
|
|
||||||
+++ |+#include <stdint.h>
|
|
||||||
41 |
|
|
||||||
pam_namespace.c:649:41: note: each undeclared identifier is reported only once for each function it appears in
|
|
||||||
649 | if (count > UINT_MAX || count > SIZE_MAX / sizeof(uid_t)) {
|
|
||||||
| ^~~~~~~~
|
|
||||||
|
|
||||||
Fixes: v1.6.0~100 ("pam_namespace: validate amount of uids in config")
|
|
||||||
Resolves: https://github.com/linux-pam/linux-pam/issues/733
|
|
||||||
|
|
||||||
Upstream: https://github.com/linux-pam/linux-pam/commit/cc9d40b7cdbd3e15ccaa324a0dda1680ef9dea13
|
|
||||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
---
|
|
||||||
modules/pam_namespace/pam_namespace.c | 2 ++
|
|
||||||
1 file changed, 2 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/modules/pam_namespace/pam_namespace.c b/modules/pam_namespace/pam_namespace.c
|
|
||||||
index f72d67189..b16731c22 100644
|
|
||||||
--- a/modules/pam_namespace/pam_namespace.c
|
|
||||||
+++ b/modules/pam_namespace/pam_namespace.c
|
|
||||||
@@ -34,6 +34,8 @@
|
|
||||||
|
|
||||||
#define _ATFILE_SOURCE
|
|
||||||
|
|
||||||
+#include "config.h"
|
|
||||||
+#include <stdint.h>
|
|
||||||
#include "pam_cc_compat.h"
|
|
||||||
#include "pam_inline.h"
|
|
||||||
#include "pam_namespace.h"
|
|
@ -1,6 +1,6 @@
|
|||||||
# Locally computed hashes after checking signature at
|
# Locally computed hashes after checking signature at
|
||||||
# https://github.com/linux-pam/linux-pam/releases/download/v1.6.0/Linux-PAM-1.6.0.tar.xz.asc
|
# https://github.com/linux-pam/linux-pam/releases/download/v1.6.1/Linux-PAM-1.6.1.tar.xz.asc
|
||||||
# signed with the key 8C6BFD92EE0F42EDF91A6A736D1A7F052E5924BB
|
# signed with the key 8C6BFD92EE0F42EDF91A6A736D1A7F052E5924BB
|
||||||
sha256 fff4a34e5bbee77e2e8f1992f27631e2329bcbf8a0563ddeb5c3389b4e3169ad Linux-PAM-1.6.0.tar.xz
|
sha256 f8923c740159052d719dbfc2a2f81942d68dd34fcaf61c706a02c9b80feeef8e Linux-PAM-1.6.1.tar.xz
|
||||||
# Locally computed
|
# Locally computed
|
||||||
sha256 133d98e7a2ab3ffd330b4debb0bfc10fea21e4b2b5a5b09de2e924293be5ff08 Copyright
|
sha256 133d98e7a2ab3ffd330b4debb0bfc10fea21e4b2b5a5b09de2e924293be5ff08 Copyright
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
LINUX_PAM_VERSION = 1.6.0
|
LINUX_PAM_VERSION = 1.6.1
|
||||||
LINUX_PAM_SOURCE = Linux-PAM-$(LINUX_PAM_VERSION).tar.xz
|
LINUX_PAM_SOURCE = Linux-PAM-$(LINUX_PAM_VERSION).tar.xz
|
||||||
LINUX_PAM_SITE = https://github.com/linux-pam/linux-pam/releases/download/v$(LINUX_PAM_VERSION)
|
LINUX_PAM_SITE = https://github.com/linux-pam/linux-pam/releases/download/v$(LINUX_PAM_VERSION)
|
||||||
LINUX_PAM_INSTALL_STAGING = YES
|
LINUX_PAM_INSTALL_STAGING = YES
|
||||||
|
Loading…
Reference in New Issue
Block a user