diff options
Diffstat (limited to 'databases/mysql84-server/files/patch-sql_stream__cipher.h')
-rw-r--r-- | databases/mysql84-server/files/patch-sql_stream__cipher.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/databases/mysql84-server/files/patch-sql_stream__cipher.h b/databases/mysql84-server/files/patch-sql_stream__cipher.h new file mode 100644 index 000000000000..fcad3c5e4079 --- /dev/null +++ b/databases/mysql84-server/files/patch-sql_stream__cipher.h @@ -0,0 +1,19 @@ +--- sql/stream_cipher.h.orig 2024-07-12 19:20:22 UTC ++++ sql/stream_cipher.h +@@ -27,6 +27,7 @@ + #include <openssl/evp.h> + #include <memory> + #include <string> ++#include <vector> + + /** + @file stream_cipher.h +@@ -35,7 +36,7 @@ + binary log files. + */ + +-typedef std::basic_string<unsigned char> Key_string; ++typedef std::vector<unsigned char> Key_string; + + /** + @class Stream_cipher |