defined %hash will be deprecated in 5.12.
Florian Ragwitz [Sun, 28 Feb 2010 14:12:26 +0000 (15:12 +0100)]
perl/FCGI.PL

index a221c74..a7a4973 100644 (file)
@@ -294,7 +294,7 @@ sub Request(;***$*$) {
 
 sub accept() {
     warn "accept called as a method; you probably wanted to call Accept" if @_;
-    if (defined %FCGI::ENV) {
+    if (%FCGI::ENV) {
        %ENV = %FCGI::ENV;
     } else {
        %FCGI::ENV = %ENV;