summaryrefslogtreecommitdiffstats
path: root/source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-11-21 20:16:54 +0000
committer Eric Hameleers <alien@slackware.com>2021-11-22 08:59:57 +0100
commit47129ed59f756b223eb47e3b28088900ad63e21c (patch)
tree501f98c9ff1a086a5a6bb52911113b897c4c47ae /source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch
parent2cfe36fdb8556ea0df2b9997349efbc0d8ecab51 (diff)
downloadcurrent-47129ed59f756b223eb47e3b28088900ad63e21c.tar.gz
current-47129ed59f756b223eb47e3b28088900ad63e21c.tar.xz
Sun Nov 21 20:16:54 UTC 202120211121201654
a/kernel-generic-5.15.4-x86_64-1.txz: Upgraded. a/kernel-huge-5.15.4-x86_64-1.txz: Upgraded. a/kernel-modules-5.15.4-x86_64-1.txz: Upgraded. d/kernel-headers-5.15.4-x86-1.txz: Upgraded. k/kernel-source-5.15.4-noarch-1.txz: Upgraded. l/imagemagick-7.1.0_15-x86_64-1.txz: Upgraded. l/libcap-2.61-x86_64-1.txz: Upgraded. l/python-packaging-21.3-x86_64-1.txz: Upgraded. n/nss-pam-ldapd-0.9.12-x86_64-1.txz: Upgraded. extra/fltk/fltk-1.3.8-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch')
-rw-r--r--source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch b/source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch
deleted file mode 100644
index b21ab09ee..000000000
--- a/source/n/nss-pam-ldapd/1025d5de336d8c9585b79df3154b5649da344281.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 1025d5de336d8c9585b79df3154b5649da344281 Mon Sep 17 00:00:00 2001
-From: Arthur de Jong <arthur@arthurdejong.org>
-Date: Sun, 13 Oct 2019 17:23:20 +0200
-Subject: [PATCH] Fix Python 3 compatibility in chsh.ldap
-
----
- utils/chsh.py | 6 +++---
- utils/shells.py | 2 +-
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/utils/chsh.py b/utils/chsh.py
-index e7537e71..0f24bfcc 100755
---- a/utils/chsh.py
-+++ b/utils/chsh.py
-@@ -43,11 +43,11 @@
- def ask_shell(oldshell):
- """Ask the user to provide a shell."""
- # Provide Python 2 compatibility
-+ prompt = ' Login Shell [%s]: ' % oldshell
- try:
-- input = raw_input
-+ shell = raw_input(prompt)
- except NameError:
-- pass
-- shell = input(' Login Shell [%s]: ' % oldshell)
-+ shell = input(prompt)
- return shell or oldshell
-
-
-diff --git a/utils/shells.py b/utils/shells.py
-index 92dba2f2..327b35e7 100644
---- a/utils/shells.py
-+++ b/utils/shells.py
-@@ -35,7 +35,7 @@ def list_shells():
- shell = getusershell()
- if not shell:
- break
-- yield shell
-+ yield shell.decode('utf-8')
- libc.endusershell()
-
-