git: 9front

Download patch

ref: a34d46ab667b1e08e0b9889d8b6210b85f7c57b5
parent: d30af764e80dfb6482797adbc45f2b2644d03865
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Sep 14 05:46:40 EDT 2015

libsec: save some space making weakCipher bitamp of type char[] instead of int[]

--- a/sys/src/libsec/port/tlshand.c
+++ b/sys/src/libsec/port/tlshand.c
@@ -2028,7 +2028,7 @@
 
 //================= cipher choices ========================
 
-static int weakCipher[] =
+static char weakCipher[] =
 {
 [TLS_NULL_WITH_NULL_NULL]		1,
 [TLS_RSA_WITH_NULL_MD5]			1,
--