diff options
author | Sam Hartman <hartmans@debian.org> | 2021-08-26 12:43:23 -0700 |
---|---|---|
committer | Sam Hartman <hartmans@debian.org> | 2021-08-26 12:43:23 -0700 |
commit | 1d37a5c06c9b6f4eb60c99daccfaebe3b2bf77aa (patch) | |
tree | 1be72cc3e88b08cb714b9cd4a2dc4ec210f62c96 /debian/patches-applied/nullok_secure-compat.patch | |
parent | ea04efa24985743014da9dd22c0581cbaef82ede (diff) | |
parent | 58476aa622ff2f622719b2cb1c586e4a93b5a801 (diff) | |
download | pam-1d37a5c06c9b6f4eb60c99daccfaebe3b2bf77aa.tar.gz pam-1d37a5c06c9b6f4eb60c99daccfaebe3b2bf77aa.tar.bz2 pam-1d37a5c06c9b6f4eb60c99daccfaebe3b2bf77aa.zip |
pam (1.4.0-10) unstable; urgency=medium
* Fix syntax error in libpam0g.postinst when a systemd unit fails,
Closes: #992538
* Include upstream patch not to use crypt_checksalt; without this
passwords set prior to bullseye were considered expired, Closes:
#992848
* Support DPKG_ROOT for pam-auth-update, thanks Johannes 'josch' Schauer
Closes: #983427
[dgit import unpatched pam 1.4.0-10]
Diffstat (limited to 'debian/patches-applied/nullok_secure-compat.patch')
-rw-r--r-- | debian/patches-applied/nullok_secure-compat.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches-applied/nullok_secure-compat.patch b/debian/patches-applied/nullok_secure-compat.patch new file mode 100644 index 00000000..d85aa9fe --- /dev/null +++ b/debian/patches-applied/nullok_secure-compat.patch @@ -0,0 +1,27 @@ +Description: Support nullok_secure as a deprecated alias for nullok +Author: Steve Langasek <vorlon@debian.org> +Last-Update: 2020-08-11 + +Index: pam/modules/pam_unix/support.h +=================================================================== +--- pam.orig/modules/pam_unix/support.h ++++ pam/modules/pam_unix/support.h +@@ -102,8 +102,9 @@ + #define UNIX_YESCRYPT_PASS 32 /* new password hashes will use yescrypt */ + #define UNIX_NULLRESETOK 33 /* allow empty password if password reset is enforced */ + #define UNIX_OBSCURE_CHECKS 34 /* enable obscure checks on passwords */ ++#define UNIX_NULLOK_SECURE 35 /* deprecated alias for nullok */ + /* -------------- */ +-#define UNIX_CTRLS_ 35 /* number of ctrl arguments defined */ ++#define UNIX_CTRLS_ 36 /* number of ctrl arguments defined */ + + #define UNIX_DES_CRYPT(ctrl) (off(UNIX_MD5_PASS,ctrl)&&off(UNIX_BIGCRYPT,ctrl)&&off(UNIX_SHA256_PASS,ctrl)&&off(UNIX_SHA512_PASS,ctrl)&&off(UNIX_BLOWFISH_PASS,ctrl)&&off(UNIX_GOST_YESCRYPT_PASS,ctrl)&&off(UNIX_YESCRYPT_PASS,ctrl)) + +@@ -147,6 +148,7 @@ + /* UNIX_YESCRYPT_PASS */ {"yescrypt", _ALL_ON_^(0x6EC22000ULL), 0x40000000, 1}, + /* UNIX_NULLRESETOK */ {"nullresetok", _ALL_ON_, 0x80000000, 0}, + /* UNIX_OBSCURE_CHECKS */ {"obscure", _ALL_ON_, 0x100000000, 0}, ++/* UNIX_NULLOK_SECURE */ {"nullok_secure", _ALL_ON_^(0x200ULL), 0, 0}, + }; + + #define UNIX_DEFAULTS (unix_args[UNIX__NONULL].flag) |