aboutsummaryrefslogtreecommitdiffstats
path: root/src/pk_pad/emsa_raw
diff options
context:
space:
mode:
Diffstat (limited to 'src/pk_pad/emsa_raw')
-rw-r--r--src/pk_pad/emsa_raw/emsa_raw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pk_pad/emsa_raw/emsa_raw.cpp b/src/pk_pad/emsa_raw/emsa_raw.cpp
index 696c6bc5c..4d32ef7a9 100644
--- a/src/pk_pad/emsa_raw/emsa_raw.cpp
+++ b/src/pk_pad/emsa_raw/emsa_raw.cpp
@@ -14,7 +14,7 @@ namespace Botan {
*/
void EMSA_Raw::update(const byte input[], u32bit length)
{
- message.append(input, length);
+ message += std::make_pair(input, length);
}
/*