From: hno <> Date: Fri, 18 Mar 2005 21:38:10 +0000 (+0000) Subject: Merged bugfix from ssl-2.5 2003/11/19 12:38:39 X-Git-Tag: SQUID_3_0_PRE4~847 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c83dac8a15633fae6d14041a9144a797ef641d2;p=thirdparty%2Fsquid.git Merged bugfix from ssl-2.5 2003/11/19 12:38:39 https_port key=.. cachemgr config dump bugfix (was giving the cert path) --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 80580e50e5..8f73fbe688 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.cc,v 1.465 2005/03/09 19:42:05 serassio Exp $ + * $Id: cache_cf.cc,v 1.466 2005/03/18 14:38:10 hno Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -2948,7 +2948,7 @@ dump_https_port_list(StoreEntry * e, const char *n, const https_port_list * s) storeAppendPrintf(e, " cert=%s", s->cert); if (s->key) - storeAppendPrintf(e, " key=%s", s->cert); + storeAppendPrintf(e, " key=%s", s->key); if (s->version) storeAppendPrintf(e, " version=%d", s->version);