aboutsummaryrefslogtreecommitdiffstats
path: root/src/emsa_raw.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-11-14 18:08:10 +0000
committerlloyd <[email protected]>2007-11-14 18:08:10 +0000
commit167f765128c4aced6c6a9dcf73f16b933910a798 (patch)
tree12f39b1973090d04d77b3303e5b112e3d78eb748 /src/emsa_raw.cpp
parent2de4693562db51f6f0e0b2f3a95e3118c40db05d (diff)
Rename MemoryRegion::append to push_back
Change all callers in the library and self-test code.
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);
}
/*************************************************