aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/cert_req.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-12-29 02:41:53 +0000
committerlloyd <[email protected]>2011-12-29 02:41:53 +0000
commitcaa9dfa12cf69bb4ab88c399e61e856fedb24900 (patch)
tree2df3665d97199c4150515667e89272679210f069 /src/tls/cert_req.cpp
parent6432abc730f65328affb4f0ca7c0116b3ded353f (diff)
Clean up the ordering of constructor args to the various message types
Diffstat (limited to 'src/tls/cert_req.cpp')
-rw-r--r--src/tls/cert_req.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/cert_req.cpp b/src/tls/cert_req.cpp
index 85c017fac..78c786262 100644
--- a/src/tls/cert_req.cpp
+++ b/src/tls/cert_req.cpp
@@ -89,8 +89,8 @@ void Certificate_Req::deserialize(const MemoryRegion<byte>& buf)
* Create a new Certificate message
*/
Certificate::Certificate(Record_Writer& writer,
- const std::vector<X509_Certificate>& cert_list,
- TLS_Handshake_Hash& hash)
+ TLS_Handshake_Hash& hash,
+ const std::vector<X509_Certificate>& cert_list)
{
certs = cert_list;
send(writer, hash);