summaryrefslogtreecommitdiff
path: root/package/krb5/patches/patch-src_include_k5-thread_h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2020-03-17 06:59:47 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2020-03-17 07:01:59 +0100
commit616362b342347514b39d6ab32049c4668bf0aa63 (patch)
treec8542a4de68e86c696fe71456e2bc90d546aa470 /package/krb5/patches/patch-src_include_k5-thread_h
parentfdc87895f7d5b791898fe46ee16f2e87b32c2aae (diff)
krb5: update to 1.18
Diffstat (limited to 'package/krb5/patches/patch-src_include_k5-thread_h')
-rw-r--r--package/krb5/patches/patch-src_include_k5-thread_h19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/krb5/patches/patch-src_include_k5-thread_h b/package/krb5/patches/patch-src_include_k5-thread_h
deleted file mode 100644
index 71eb656f9..000000000
--- a/package/krb5/patches/patch-src_include_k5-thread_h
+++ /dev/null
@@ -1,19 +0,0 @@
---- krb5-1.12.1.orig/src/include/k5-thread.h 2014-01-16 01:44:15.000000000 +0100
-+++ krb5-1.12.1/src/include/k5-thread.h 2014-06-05 20:59:34.000000000 +0200
-@@ -380,14 +380,12 @@ static inline int k5_mutex_finish_init(k
-
- static inline void k5_mutex_lock(k5_mutex_t *m)
- {
-- int r = k5_os_mutex_lock(m);
-- assert(r == 0);
-+ k5_os_mutex_lock(m);
- }
-
- static inline void k5_mutex_unlock(k5_mutex_t *m)
- {
-- int r = k5_os_mutex_unlock(m);
-- assert(r == 0);
-+ k5_os_mutex_unlock(m);
- }
-
- #define k5_mutex_assert_locked(M) ((void)(M))