2002-03-21
2002-03-21 09:15:35 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
392a647e584e239d7bb84aa9b749f2f87c023559
(5 lines)
(+3/-2)
[
Show
| Annotate
]
Branch: 5.2
Fixed typo in chained cert handling.
Thanks to Petter Larsson & Per Hedbor.
Rev: server/base_server/roxen.pike:1.783
6:
// Per Hedbor, Henrik Grubbström, Pontus Hagland, David Hedbor and others.
// ABS and suicide systems contributed freely by Francesco Chemolli
- constant cvs_version="$Id: roxen.pike,v 1.782 2002/02/27 17:41:19 wellhard Exp $";
+ constant cvs_version="$Id: roxen.pike,v 1.783 2002/03/21 09:15:35 grubba Exp $";
// The argument cache. Used by the image cache.
ArgCache argcache;
1566: Inside #if constant(SSL.sslfile)
// DWIM: Make sure the main cert comes first in the cert list.
ctx->certificates = ({ cert }) + ctx->certificates;
} else {
- ctx->certificates += ctx->certificates;
+ ctx->certificates += ({ cert });
continue;
}
}