diff options
author | Ted Ross <tross@apache.org> | 2009-05-08 19:48:48 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-05-08 19:48:48 +0000 |
commit | 3ae56e44a5b36fe1acb3fe3dc8b494c7022ab580 (patch) | |
tree | 851534ce8e2e80089aaf733bb178518dac63c368 /cpp/src | |
parent | 80055cdd9d3f2f2f4e26a76f7a3224f4db4fedfc (diff) | |
download | qpid-python-3ae56e44a5b36fe1acb3fe3dc8b494c7022ab580.tar.gz |
Fixed a minor typo
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@773068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/sys/cyrus/CyrusSecurityLayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/cyrus/CyrusSecurityLayer.cpp b/cpp/src/qpid/sys/cyrus/CyrusSecurityLayer.cpp index 4abd5db8f6..35203a33ce 100644 --- a/cpp/src/qpid/sys/cyrus/CyrusSecurityLayer.cpp +++ b/cpp/src/qpid/sys/cyrus/CyrusSecurityLayer.cpp @@ -46,7 +46,7 @@ size_t CyrusSecurityLayer::decode(const char* input, size_t size) size_t inSize = std::min(size - inStart, maxInputSize); int result = sasl_decode(conn, input + inStart, inSize, &decrypted, &decryptedSize); if (result != SASL_OK) { - throw framing::InternalErrorException(QPID_MSG("SASL encode error: " << sasl_errdetail(conn))); + throw framing::InternalErrorException(QPID_MSG("SASL decode error: " << sasl_errdetail(conn))); } inStart += inSize; size_t copied = 0; |