summaryrefslogtreecommitdiff
path: root/debian/patches-applied/022_pam_unix_group_time_miscfixes
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@ubuntu.com>2019-01-03 16:11:36 -0800
committerSteve Langasek <steve.langasek@ubuntu.com>2019-01-03 16:11:36 -0800
commit23962fab57727030a1d2d01f0c4b43a9075681c1 (patch)
tree1e660fdf50e1bdaf0e1543f6aaf38df1b8ae5914 /debian/patches-applied/022_pam_unix_group_time_miscfixes
parentcccf6eb73fb02c8c7cf93e18b49ce1d9e697052a (diff)
parent3df8bf43bb3e239563ebabab30836279d0d1e1f2 (diff)
merge
Diffstat (limited to 'debian/patches-applied/022_pam_unix_group_time_miscfixes')
-rw-r--r--debian/patches-applied/022_pam_unix_group_time_miscfixes19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches-applied/022_pam_unix_group_time_miscfixes b/debian/patches-applied/022_pam_unix_group_time_miscfixes
index e96dd680..44ee8783 100644
--- a/debian/patches-applied/022_pam_unix_group_time_miscfixes
+++ b/debian/patches-applied/022_pam_unix_group_time_miscfixes
@@ -1,24 +1,5 @@
* Add support for credential reinitialization in pam_group, closes: #108697
- * By default do complete matches not substring matches for pam_time.
- You can include explicit wildcard for substring, closes: #66152
-Index: Linux-PAM/modules/pam_time/pam_time.c
-===================================================================
---- Linux-PAM/modules/pam_time/pam_time.c.orig
-+++ Linux-PAM/modules/pam_time/pam_time.c
-@@ -324,7 +324,11 @@
- return FALSE;
- }
- }
-- return ( !len );
-+ /* By this point we know that we didn't treat a * in b as a wildcard.
-+ the only way we got done with the loop is if we consumed every
-+ character in b. Thus the strings are equal if their
-+ lengths are the same otherwise not equal. */
-+ return (strlen (a) == strlen (b));
- }
-
- typedef struct {
Index: Linux-PAM/modules/pam_group/pam_group.c
===================================================================
--- Linux-PAM/modules/pam_group/pam_group.c.orig