Advertisement
Guest User

mysql patch

a guest
May 4th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. mysql-5.5.27/client/mysql.cc
  2. 2638c2638
  3. < field_names[i][num_fields*2]= '/0';
  4. ---
  5. > field_names[i][num_fields*2]= NULL;
  6. mysql-5.5.27/sql/mysqld.cc
  7. 98a99,100
  8. > #include <openssl/crypto.h>
  9. >
  10. 938c940
  11. < static unsigned long openssl_id_function();
  12. ---
  13. > static void openssl_id_function(CRYPTO_THREADID *);
  14. 3555c3557
  15. < CRYPTO_set_id_callback(openssl_id_function);
  16. ---
  17. > CRYPTO_THREADID_set_callback(openssl_id_function);
  18. 3593c3595
  19. < static unsigned long openssl_id_function()
  20. ---
  21. > static void openssl_id_function(CRYPTO_THREADID *tid)
  22. 3595c3597
  23. < return (unsigned long) pthread_self();
  24. ---
  25. > tid->val= (unsigned long) pthread_self();
  26. mysql-5.5.27/vio/viosslfactories.c
  27. 16a17,18
  28. > #include <openssl/dh.h>
  29. > #include <openssl/bn.h>
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement