Commit b85705cc authored by unknown's avatar unknown
Browse files

Merge


mysql-test/Makefile.am:
  Auto merged
extra/yassl/taocrypt/include/modes.hpp:
  SCCS merged
parents 871977f2 0a4600a1
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@

#include <assert.h>             // assert
#include "yassl_types.hpp"      // ysDelete
#include "yassl_error.hpp"      // Error
#include "memory.hpp"           // mySTL::auto_ptr
#include "algorithm.hpp"        // mySTL::swap

+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@

#include "vector.hpp"
#include "pair.hpp"
#include "yassl_error.hpp"



+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ namespace yaSSL {
extern "C" {
#endif

#undef X509_NAME   /* wincrypt.h clash */

#if defined(__cplusplus) && !defined(YASSL_MYSQL_COMPATIBLE)
    class SSL;
+3 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@
#define yaSSL_INT_HPP

#include "yassl_imp.hpp"
#include "yassl_error.hpp"
#include "crypto_wrapper.hpp"
#include "cert_wrapper.hpp"
#include "log.hpp"
@@ -129,6 +130,8 @@ private:
};


#undef X509_NAME  // wincrypt.h clash

// openSSL X509 names
class X509_NAME {
    char* name_;
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ void ysArrayDelete(T* ptr)


// to resolve compiler generated operator delete on base classes with
// virtual destructors, make sure doesn't get called
// virtual destructors (when on stack), make sure doesn't get called
class virtual_base {
public:
    static void operator delete(void*) { assert(0); }
Loading