diff options
author | lloyd <[email protected]> | 2012-01-19 20:02:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-19 20:02:07 +0000 |
commit | 4c3d3e1c56451c635fb81dadfb249ce1856af0ce (patch) | |
tree | f641c31dfbcf9badeac1dd5ae79eb28742fd0c68 /src/tls/tls_session.h | |
parent | 385febfc3c150450d231f9550ac5e33f5316751f (diff) |
Various and sundry bug fixes
Diffstat (limited to 'src/tls/tls_session.h')
-rw-r--r-- | src/tls/tls_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_session.h b/src/tls/tls_session.h index f1352a0e0..12b76bcab 100644 --- a/src/tls/tls_session.h +++ b/src/tls/tls_session.h @@ -75,7 +75,7 @@ class BOTAN_DLL TLS_Session /** * Get the minor version of the saved session */ - byte minor_version() const { return get_byte(0, m_version); } + byte minor_version() const { return get_byte(1, m_version); } /** * Get the ciphersuite of the saved session |