diff options
author | lloyd <[email protected]> | 2007-11-14 18:08:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-11-14 18:08:10 +0000 |
commit | 167f765128c4aced6c6a9dcf73f16b933910a798 (patch) | |
tree | 12f39b1973090d04d77b3303e5b112e3d78eb748 /checks | |
parent | 2de4693562db51f6f0e0b2f3a95e3118c40db05d (diff) |
Rename MemoryRegion::append to push_back
Change all callers in the library and self-test code.
Diffstat (limited to 'checks')
-rw-r--r-- | checks/dolook2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/dolook2.cpp b/checks/dolook2.cpp index b6c9ba339..1cd103c3b 100644 --- a/checks/dolook2.cpp +++ b/checks/dolook2.cpp @@ -62,7 +62,7 @@ class KDF_Filter : public Filter { public: void write(const byte in[], u32bit len) - { secret.append(in, len); } + { secret.push_back(in, len); } void end_msg() { SymmetricKey x = kdf->derive_key(outlen, |