]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Merged bugfix from ssl-2.5 2003/11/19 12:38:39
authorhno <>
Fri, 18 Mar 2005 21:38:10 +0000 (21:38 +0000)
committerhno <>
Fri, 18 Mar 2005 21:38:10 +0000 (21:38 +0000)
https_port key=.. cachemgr config dump bugfix (was giving the cert path)

src/cache_cf.cc

index 80580e50e5bbe905fd54ad41bb4de72f5c8c82bb..8f73fbe6882a67858e6b6058e231b571899128e5 100644 (file)
@@ -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);