in reply to Re^2: LWP::UserAgent certificate verify failed
in thread LWP::UserAgent certificate verify failed

How do I find that path on Windows?
#!perl use File::Find; find(\&wanted,@INC); sub wanted { print "$File::Find::dir/$_\n" if ($_ =~ /\.pem$/); }
poj