diff options
author | msvensson@neptunus.(none) <> | 2006-10-24 12:53:47 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-10-24 12:53:47 +0200 |
commit | 33a200d73dde609418d8096a4795694f5be885f5 (patch) | |
tree | f49940b1731e72b01cbe18792f3d50b5e749da6b /vio | |
parent | 10f8cdef74e64759dad92dbd4327f8b9169e234e (diff) | |
parent | 6b920ebd84b167984cb765e1953a73fc9dd305ee (diff) | |
download | mariadb-git-33a200d73dde609418d8096a4795694f5be885f5.tar.gz |
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint
Diffstat (limited to 'vio')
-rw-r--r-- | vio/viossl.c | 5 | ||||
-rw-r--r-- | vio/viosslfactories.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/vio/viossl.c b/vio/viossl.c index 9cc4523d32e..b5fd0e11c02 100644 --- a/vio/viossl.c +++ b/vio/viossl.c @@ -26,6 +26,10 @@ #ifdef HAVE_OPENSSL #ifdef __NETWARE__ + +/* yaSSL already uses BSD sockets */ +#ifndef HAVE_YASSL + /* The default OpenSSL implementation on NetWare uses WinSock. This code allows us to use the BSD sockets. @@ -47,6 +51,7 @@ static int SSL_set_fd_bsd(SSL *s, int fd) #define SSL_set_fd(A, B) SSL_set_fd_bsd((A), (B)) +#endif /* HAVE_YASSL */ #endif /* __NETWARE__ */ diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index ca7a96d5801..bce70078b3e 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -180,11 +180,15 @@ void netware_ssl_cleanup() /* free memory from SSL_library_init() */ EVP_cleanup(); +/* OpenSSL NetWare port specific functions */ +#ifndef HAVE_YASSL + /* free global X509 method */ X509_STORE_method_cleanup(); /* free the thread_hash error table */ ERR_free_state_table(); +#endif } |