Fixed const correctness issues in programs and tests

This commit is contained in:
Paul Bakker 2013-06-06 12:52:24 +02:00
parent eae09db9e5
commit e0225e4d7f
21 changed files with 108 additions and 89 deletions

View file

@ -41,7 +41,7 @@
#define MAX_CLIENT_CERTS 8
char *client_certificates[MAX_CLIENT_CERTS] =
const char *client_certificates[MAX_CLIENT_CERTS] =
{
"client1.crt",
"client2.crt",
@ -53,7 +53,7 @@ char *client_certificates[MAX_CLIENT_CERTS] =
"cert_sha512.crt"
};
char *client_private_keys[MAX_CLIENT_CERTS] =
const char *client_private_keys[MAX_CLIENT_CERTS] =
{
"client1.key",
"client2.key",