aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_channel.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-09-07 15:24:47 +0000
committerlloyd <[email protected]>2012-09-07 15:24:47 +0000
commit9e6542a1d04a0bb885653fa45f845b5e259f0e2d (patch)
treec6ef767094ca55cd556b9a252a075ea323e3bb2a /src/tls/tls_channel.cpp
parent11556009cefa8246ab9f5aaba667290d3d7632e9 (diff)
Reindent
Diffstat (limited to 'src/tls/tls_channel.cpp')
-rw-r--r--src/tls/tls_channel.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/tls/tls_channel.cpp b/src/tls/tls_channel.cpp
index 12fc564f0..4a37f1c7a 100644
--- a/src/tls/tls_channel.cpp
+++ b/src/tls/tls_channel.cpp
@@ -144,16 +144,17 @@ size_t Channel::received_data(const byte buf[], size_t buf_size)
size_t consumed = 0;
- const size_t needed = TLS::read_record(m_readbuf,
- m_readbuf_pos,
- buf,
- buf_size,
- consumed,
- rec_type,
- record,
- m_read_seq_no,
- m_current_version,
- m_read_cipherstate.get());
+ const size_t needed =
+ read_record(m_readbuf,
+ m_readbuf_pos,
+ buf,
+ buf_size,
+ consumed,
+ rec_type,
+ record,
+ m_read_seq_no,
+ m_current_version,
+ m_read_cipherstate.get());
BOTAN_ASSERT(consumed <= buf_size,
"Record reader consumed sane amount");