logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git

0002-Remove-unneeded-at-top-level.patch (1093B)


  1. From adc84eef824bd6d685848965bc1271272a723727 Mon Sep 17 00:00:00 2001
  2. From: Michael Forney <mforney@mforney.org>
  3. Date: Fri, 30 Apr 2021 18:14:07 -0700
  4. Subject: [PATCH] Remove unneeded ';' at top level
  5. This is not allowed in the ISO C grammar.
  6. ---
  7. crypto/x509/x509_issuer_cache.c | 4 ++--
  8. 1 file changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/crypto/x509/x509_issuer_cache.c b/crypto/x509/x509_issuer_cache.c
  10. index 26cde17..d1af24a 100644
  11. --- a/crypto/x509/x509_issuer_cache.c
  12. +++ b/crypto/x509/x509_issuer_cache.c
  13. @@ -53,8 +53,8 @@ static TAILQ_HEAD(lruqueue, x509_issuer) x509_issuer_lru =
  14. TAILQ_HEAD_INITIALIZER(x509_issuer_lru);
  15. static pthread_mutex_t x509_issuer_tree_mutex = PTHREAD_MUTEX_INITIALIZER;
  16. -RB_PROTOTYPE(x509_issuer_tree, x509_issuer, entry, x509_issuer_cmp);
  17. -RB_GENERATE(x509_issuer_tree, x509_issuer, entry, x509_issuer_cmp);
  18. +RB_PROTOTYPE(x509_issuer_tree, x509_issuer, entry, x509_issuer_cmp)
  19. +RB_GENERATE(x509_issuer_tree, x509_issuer, entry, x509_issuer_cmp)
  20. /*
  21. * Set the maximum number of cached entries. On additions to the cache
  22. --
  23. 2.31.1