pqinetwork.cc: removed compiler warnings on windows, errors was fixed already

sslfns.h: test for existing function with #ifdef doesn't work, used OPENSSL_VERSION_NUMBER instead - please test

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3284 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-07-11 00:07:19 +00:00
parent 9efe0b2e9e
commit c005f7d4a8
2 changed files with 15 additions and 3 deletions

View file

@ -51,7 +51,7 @@
// IF we are compiling against ssl0.9.7 - these functions don't exist.
#if !defined(EVP_CIPHER_CTX_rand_key)
#if (OPENSSL_VERSION_NUMBER & 0xfffff000) < 0x00908000
#define SSLFNS_ADD_CIPHER_CTX_RAND_KEY 1
#endif