aboutsummaryrefslogtreecommitdiff
path: root/lib/mk-ca-bundle.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-08-23 12:11:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-08-23 12:11:38 +0000
commit13dc82b9d4e3280e9fbb038027169a544fcbd171 (patch)
tree501aab02f8a678b72ebc83b2d85fc47e394a3672 /lib/mk-ca-bundle.pl
parenta243dd45873cd226a0da2ca4acf6b140e4065950 (diff)
- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi
interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047
Diffstat (limited to 'lib/mk-ca-bundle.pl')
-rwxr-xr-xlib/mk-ca-bundle.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl
index 279dd447e..4d41af9d3 100755
--- a/lib/mk-ca-bundle.pl
+++ b/lib/mk-ca-bundle.pl
@@ -163,7 +163,7 @@ while (<TXT>) {
. MIME::Base64::encode($data)
. "-----END CERTIFICATE-----\n";
open(CRT, ">>$crt") or die "Couldn't open $crt: $!";
- print CRT "\n$caname\n";
+ print CRT "\n\"$caname\"\n";
print CRT ("=" x length($caname) . "\n");
if (!$opt_t) {
print CRT $pem;