Index: trunk/Nebulous/lib/Nebulous/Server.pm
===================================================================
--- trunk/Nebulous/lib/Nebulous/Server.pm	(revision 2898)
+++ trunk/Nebulous/lib/Nebulous/Server.pm	(revision 2900)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004  Joshua Hoblitt
 #
-# $Id: Server.pm,v 1.2 2005-01-05 02:44:54 jhoblitt Exp $
+# $Id: Server.pm,v 1.3 2005-01-05 03:03:30 jhoblitt Exp $
 
 package PS::IPP::IData::Server;
@@ -618,5 +618,7 @@
 
 sub _get_storage_volume {
-    $log->debug( "entered - @_" );
+    no warnings qw( uninitialized );
+    $log->debug( "entered - @_" );
+    use warnings;
 
     my $name = shift;
Index: trunk/Nebulous/lib/Nebulous/Server/Apache.pm
===================================================================
--- trunk/Nebulous/lib/Nebulous/Server/Apache.pm	(revision 2898)
+++ trunk/Nebulous/lib/Nebulous/Server/Apache.pm	(revision 2900)
@@ -10,4 +10,5 @@
 our $VERSION = 0.01;
 
+use PS::IPP::IData::Server;
 use SOAP::Transport::HTTP;
 
@@ -16,5 +17,7 @@
     ->options({ compress_threshold => 10 * 1024 });
 
+no warnings qw( redefine );
 sub handler { $server->handler(@_); }
+use warnings;
 
 1;
