1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

- String peer_cn in ssl context made const as well.

This commit is contained in:
Paul Bakker
2010-03-24 06:51:15 +00:00
parent ad7eca201d
commit 57b7914445
2 changed files with 3 additions and 3 deletions

View File

@ -1703,7 +1703,7 @@ void ssl_set_ciphers( ssl_context *ssl, int *ciphers )
}
void ssl_set_ca_chain( ssl_context *ssl, x509_cert *ca_chain,
x509_crl *ca_crl, char *peer_cn )
x509_crl *ca_crl, const char *peer_cn )
{
ssl->ca_chain = ca_chain;
ssl->ca_crl = ca_crl;