summaryrefslogtreecommitdiff
path: root/extra/yassl
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-06-09 15:48:57 +0200
committerunknown <serg@serg.mylan>2005-06-09 15:48:57 +0200
commit1438e06e3acc7558989d8b262c4c599df57ef645 (patch)
tree99838edf4799e9efdccfe0e9a943c3d6843f9509 /extra/yassl
parent1531ab871092791a384da81e76e8e9199aaf1097 (diff)
downloadmariadb-git-1438e06e3acc7558989d8b262c4c599df57ef645.tar.gz
sql/mysql_priv.h
comments, unused flag OPTION_INTERNAL_SUBTRANSACTIONS removed SELECT_ALL flag moved into this free slot. bdb/dist/configure.ac: don't link bdb with -pthread on FreeBSD extra/yassl/taocrypt/include/modes.hpp: fix alignment in yassl - proper fix is required sql/ha_berkeley.cc: remove unused flag OPTION_INTERNAL_SUBTRANSACTIONS sql/mysql_priv.h: comments, unused flag OPTION_INTERNAL_SUBTRANSACTIONS removed SELECT_ALL flag moved into this free slot.
Diffstat (limited to 'extra/yassl')
-rw-r--r--extra/yassl/taocrypt/include/modes.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/taocrypt/include/modes.hpp b/extra/yassl/taocrypt/include/modes.hpp
index 585231c9b9e..ccf6c08549f 100644
--- a/extra/yassl/taocrypt/include/modes.hpp
+++ b/extra/yassl/taocrypt/include/modes.hpp
@@ -71,7 +71,7 @@ public:
void SetIV(const byte* iv) { memcpy(reg_, iv, blockSz_); }
private:
- byte reg_[MaxBlockSz];
+ byte __attribute__ ((aligned (sizeof(word32)))) reg_[MaxBlockSz];
byte tmp_[MaxBlockSz];
int blockSz_;