summary refs log tree commit diff stats
path: root/src/common/ssl.h
diff options
context:
space:
mode:
authorTingPing <tingping@fedoraproject.org>2014-09-20 13:56:09 -0400
committerTingPing <tingping@fedoraproject.org>2014-09-20 13:56:09 -0400
commitf38925740321b9310618d23d504e9272bd45df2b (patch)
tree014d084f3045e2a282c92144a9637fef14daca4b /src/common/ssl.h
parent84df81f336abc5e6341ccbf42ac59c339ed2c159 (diff)
Increase max len of chiper names
For example ECDHE-ECRSA-AES256-GCM-SHA384
Diffstat (limited to 'src/common/ssl.h')
-rw-r--r--src/common/ssl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ssl.h b/src/common/ssl.h
index ad34944c..9c729855 100644
--- a/src/common/ssl.h
+++ b/src/common/ssl.h
@@ -37,7 +37,7 @@ struct cert_info {
 
 struct chiper_info {
     char version[16];
-    char chiper[24];
+    char chiper[48];
     int chiper_bits;
 };