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

Silence a gcc warning about cpType being possibly used uninitialized,

and constify it while I'm at it.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93188 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Cliff Woolley
2002-02-03 01:50:58 +00:00
parent e39e40da73
commit 7b7ec65b73

View File

@ -73,7 +73,7 @@
apr_status_t ssl_hook_CloseConnection(SSLFilterRec *filter)
{
SSL *ssl;
char *cpType;
const char *cpType = "";
conn_rec *conn;
SSLConnRec *sslconn;