patch-src_libosiris_ssl_utilities_c 827 B

123456789101112131415161718192021222324252627282930
  1. $Id: update-patches 24 2008-08-31 14:56:13Z wbx $
  2. --- osiris-4.2.3.orig/src/libosiris/ssl_utilities.c 2006-07-28 01:57:51.000000000 +0200
  3. +++ osiris-4.2.3/src/libosiris/ssl_utilities.c 2009-05-10 20:41:31.000000000 +0200
  4. @@ -51,7 +51,9 @@
  5. #include <openssl/rand.h>
  6. #include <openssl/md5.h>
  7. #include <openssl/sha.h>
  8. +#ifndef OPENSSL_NO_RIPEMD
  9. #include <openssl/ripemd.h>
  10. +#endif
  11. #ifdef WIN32
  12. #include <winsock.h>
  13. @@ -337,6 +339,7 @@ int hash_file_sha( const char *file_path
  14. return -1;
  15. }
  16. +#ifndef OPENSSL_NO_RIPEMD
  17. /******************************************************************************
  18. **
  19. ** Function: hash_file_ripemd
  20. @@ -433,7 +436,7 @@ int hash_file_ripemd( const char *file_p
  21. return -1;
  22. }
  23. -
  24. +#endif
  25. /******************************************************************************
  26. **