in reply to Getting error trying to use Net::SSLeay in LWP script

I think its because you have the 'warning' turned on. It just means that at some point in your script you used a variable without initializing it. Like:
$foo; $bar = "ahhhhh"; while ( $foo eq $bar ) { # execute }
Foo was never assigned a value and that is considered 'uninitialized'. Hope that helps. - kel -