diff options
author | corvid <devnull@localhost> | 2015-06-01 17:15:12 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-06-01 17:15:12 +0000 |
commit | 3aa9e64c49310a0e47e63a1ccded6b9cd223519f (patch) | |
tree | 8d223e8fbbecf4bd2a7d56be12bd92c5a4f9229c /src | |
parent | 67e71ab81f83ecd09e97c5e29cb240431450a7ec (diff) |
const
Diffstat (limited to 'src')
-rw-r--r-- | src/IO/tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IO/tls.c b/src/IO/tls.c index be8b7b92..4ae40961 100644 --- a/src/IO/tls.c +++ b/src/IO/tls.c @@ -210,7 +210,7 @@ static void Tls_load_certificates() */ uint_t u; char *userpath; - static const char *ca_files[] = { + static const char *const ca_files[] = { "/etc/ssl/certs/ca-certificates.crt", "/etc/pki/tls/certs/ca-bundle.crt", "/usr/share/ssl/certs/ca-bundle.crt", @@ -219,7 +219,7 @@ static void Tls_load_certificates() CA_CERTS_FILE }; - static const char *ca_paths[] = { + static const char *const ca_paths[] = { "/etc/ssl/certs/", CA_CERTS_DIR }; |