From 538de80a91da74598ba2449fbbec6de37376a4ce Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 20 Mar 2003 01:24:12 +0000 Subject: various changes for 5.1 --- basecode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basecode.h') diff --git a/basecode.h b/basecode.h index dcb49b05..9d6164f3 100644 --- a/basecode.h +++ b/basecode.h @@ -61,11 +61,11 @@ public: Grouper(BufferedTransformation *attachment=NULL) : Bufferless(attachment) {} - Grouper(int groupSize, const std::string &seperator, const std::string &terminator, BufferedTransformation *attachment=NULL) + Grouper(int groupSize, const std::string &separator, const std::string &terminator, BufferedTransformation *attachment=NULL) : Bufferless(attachment) { IsolatedInitialize(MakeParameters("GroupSize", groupSize) - ("Seperator", ConstByteArrayParameter(seperator)) + ("Separator", ConstByteArrayParameter(separator)) ("Terminator", ConstByteArrayParameter(terminator))); } @@ -73,7 +73,7 @@ public: unsigned int Put2(const byte *begin, unsigned int length, int messageEnd, bool blocking); private: - SecByteBlock m_seperator, m_terminator; + SecByteBlock m_separator, m_terminator; unsigned int m_groupSize, m_counter; }; -- cgit v1.2.1