mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/kasc/openh323/openssl-hotfix.patch.pwlib
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./src/ptclib/pssl.cxx.orig 2005-07-25 14:03:17.000000000 +0200
  20. +++ ./src/ptclib/pssl.cxx 2005-07-25 14:03:54.000000000 +0200
  21. @@ -297,14 +297,14 @@
  22. PSSLPrivateKey::PSSLPrivateKey(const BYTE * keyData, PINDEX keySize)
  23. {
  24. - key = d2i_AutoPrivateKey(NULL, (BYTE **)&keyData, keySize);
  25. + key = d2i_AutoPrivateKey(NULL, (const BYTE **)&keyData, keySize);
  26. }
  27. PSSLPrivateKey::PSSLPrivateKey(const PBYTEArray & keyData)
  28. {
  29. const BYTE * keyPtr = keyData;
  30. - key = d2i_AutoPrivateKey(NULL, (BYTE **)&keyPtr, keyData.GetSize());
  31. + key = d2i_AutoPrivateKey(NULL, (const BYTE **)&keyPtr, keyData.GetSize());
  32. }
  33. @@ -472,14 +472,14 @@
  34. PSSLCertificate::PSSLCertificate(const BYTE * certData, PINDEX certSize)
  35. {
  36. - certificate = d2i_X509(NULL, (unsigned char **)&certData, certSize);
  37. + certificate = d2i_X509(NULL, (const unsigned char **)&certData, certSize);
  38. }
  39. PSSLCertificate::PSSLCertificate(const PBYTEArray & certData)
  40. {
  41. const BYTE * certPtr = certData;
  42. - certificate = d2i_X509(NULL, (unsigned char **)&certPtr, certData.GetSize());
  43. + certificate = d2i_X509(NULL, (const unsigned char **)&certPtr, certData.GetSize());
  44. }
  45. @@ -489,7 +489,7 @@
  46. PBase64::Decode(certStr, certData);
  47. if (certData.GetSize() > 0) {
  48. const BYTE * certPtr = certData;
  49. - certificate = d2i_X509(NULL, (unsigned char **)&certPtr, certData.GetSize());
  50. + certificate = d2i_X509(NULL, (const unsigned char **)&certPtr, certData.GetSize());
  51. }
  52. else
  53. certificate = NULL;