From b6d0a1d2ebb4c6cf6f3bcecb5c8ef6f8c18267ed Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Sat, 15 Jun 2013 00:14:02 -0500 Subject: Removing pam_pwcheck-3.9-pthread.patch --- .../pam_pwcheck/pam_pwcheck-3.9-pthread.patch | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch (limited to 'community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch') diff --git a/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch b/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch deleted file mode 100644 index ef007b469..000000000 --- a/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch +++ /dev/null @@ -1,58 +0,0 @@ ---- pam_pwcheck-3.9.orig/src/read-files.c 2005-10-10 13:38:30.000000000 -0500 -+++ pam_pwcheck-3.9/src/read-files.c 2012-12-25 05:23:41.175269985 -0500 -@@ -30,8 +30,7 @@ - #include - #include - #include --#include --#define __libc_lock_t pthread_mutex_t -+#include - - #include "read-files.h" - -@@ -341,11 +340,11 @@ - char *buffer, size_t buflen, int *errnop) - { - /* Locks the static variables in this file. */ -- __libc_lock_define_initialized (static, lock); -+ static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; - enum nss_status status; - FILE *stream = NULL; - -- __libc_lock_lock (lock); -+ pthread_mutex_lock (&lock); - - status = internal_setent (&stream, "/shadow"); - if (status == NSS_STATUS_SUCCESS) -@@ -361,7 +360,7 @@ - internal_endent (&stream); - } - -- __libc_lock_unlock (lock); -+ pthread_mutex_unlock (&lock); - - return status; - } -@@ -371,11 +370,11 @@ - char *buffer, size_t buflen, int *errnop) - { - /* Locks the static variables in this file. */ -- __libc_lock_define_initialized (static, lock); -+ static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; - enum nss_status status; - FILE *stream = NULL; - -- __libc_lock_lock (lock); -+ pthread_mutex_lock (&lock); - - status = internal_setent (&stream, "/passwd"); - if (status == NSS_STATUS_SUCCESS) -@@ -391,7 +390,7 @@ - internal_endent (&stream); - } - -- __libc_lock_unlock (lock); -+ pthread_mutex_unlock (&lock); - - return status; - } -- cgit v1.2.3-54-g00ecf