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