diff options
author | lloyd <[email protected]> | 2014-04-13 14:51:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-04-13 14:51:12 +0000 |
commit | cff39226ba13a7d77ca55f7712d3f67242b95a4e (patch) | |
tree | a1079566d3fe5d88b42e49d9d1e0dc95936b23fe | |
parent | 4d72d7344018e97d672956e5292e23c88e1f7f1f (diff) |
Compile fix
-rw-r--r-- | src/lib/tls/tls_reader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/tls/tls_reader.h b/src/lib/tls/tls_reader.h index 59bc23a03..1c4f0f456 100644 --- a/src/lib/tls/tls_reader.h +++ b/src/lib/tls/tls_reader.h @@ -168,9 +168,9 @@ class TLS_Data_Reader " left"); } - Decode_Error decode_error(const std::string& why) const + Decoding_Error decode_error(const std::string& why) const { - return Decode_Error("Invalid " + std::string(m_typename) + ": " + why); + return Decoding_Error("Invalid " + std::string(m_typename) + ": " + why); } const char* m_typename; |