Files
ports/databases/xtrabackup80/files/patch-sql_stream__cipher.h
T
Eugene Grosbein 47f3955374 databases/xtrabackup80: fix build with llvm-19
PORTREVISION not bumped as this fixes build.

PR:		287958
Reported by:	Eugene M. Zheganin (maintainer)
Tested by:	Eugene M. Zheganin (maintainer)
2025-07-02 15:40:25 +07:00

21 lines
397 B
Objective-C

--- sql/stream_cipher.h.orig 2023-11-24 10:33:10 UTC
+++ sql/stream_cipher.h
@@ -25,7 +25,7 @@
#include <openssl/evp.h>
#include <memory>
-#include <string>
+#include <vector>
/**
@file stream_cipher.h
@@ -34,7 +34,7 @@
binary log files.
*/
-typedef std::basic_string<unsigned char> Key_string;
+typedef std::vector<unsigned char> Key_string;
/**
@class Stream_cipher