1
0
mirror of https://github.com/apache/httpd.git synced 2025-07-30 20:03:10 +03:00

Clear up a const warning, and recognize some arrays by changing the

variable names to the plural [rather than aszFoo, which I hope continues
  to be cleaned up as folks have time.]


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93982 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2002-03-17 17:32:24 +00:00
parent 9738c5be8e
commit 05ae021cfd
4 changed files with 18 additions and 18 deletions

View File

@ -417,7 +417,7 @@ void ssl_init_ConfigureServer(server_rec *s,
* Now check for important parameters and the
* possibility that the user forgot to set them.
*/
if (!sc->szPublicCertFile[0]) {
if (!sc->szPublicCertFiles[0]) {
ssl_log(s, SSL_LOG_ERROR,
"Init: (%s) No SSL Certificate set [hint: SSLCertificateFile]",
vhost_id);
@ -826,8 +826,8 @@ void ssl_init_ConfigureServer(server_rec *s,
if (sc->szCertificateChain) {
BOOL skip_first = FALSE;
for (i = 0; (i < SSL_AIDX_MAX) && sc->szPublicCertFile[i]; i++) {
if (strEQ(sc->szPublicCertFile[i], sc->szCertificateChain)) {
for (i = 0; (i < SSL_AIDX_MAX) && sc->szPublicCertFiles[i]; i++) {
if (strEQ(sc->szPublicCertFiles[i], sc->szCertificateChain)) {
skip_first = TRUE;
break;
}