summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-09-14 09:46:40 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-09-14 09:46:40 +0200
commit029c271825d626f4eb9e8310f5e72a026d3c16d7 (patch)
treea16eb98d7e0d8c251849a9ec2da448af79f0de7e
parent9733434e6eecca748a15a46e8a52635c5183a8dc (diff)
libsec: save some space making weakCipher bitamp of type char[] instead of int[]
-rw-r--r--sys/src/libsec/port/tlshand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libsec/port/tlshand.c b/sys/src/libsec/port/tlshand.c
index 32d5e0f5b..dd795cd8b 100644
--- a/sys/src/libsec/port/tlshand.c
+++ b/sys/src/libsec/port/tlshand.c
@@ -2028,7 +2028,7 @@ tlsConnectionFree(TlsConnection *c)
//================= cipher choices ========================
-static int weakCipher[] =
+static char weakCipher[] =
{
[TLS_NULL_WITH_NULL_NULL] 1,
[TLS_RSA_WITH_NULL_MD5] 1,