Hi,
While trying to use SSCEP client (
http://www.klake.org/~jt/sscep/) in order
to experience SCEP enrollment, I notice that in the subroutine *sub
get_http_content* (in file /usr/share/pki/ra/lib/perl/PKI/Conn/CA.pm)*,* the
line
*my $count = `grep Content-Length $filename | cut -d' ' -f2`;* leads to a
crash because the result of the command is not the value expected.
I had to change the line to *my $count = `head -6 $filename | grep
Content-Length | cut -d' ' -f2`;* to get the exact content-length
I must probably report that somewhere else but...not really an expert.
Thx