Index: /trunk/Nebulous-Server/Changes
===================================================================
--- /trunk/Nebulous-Server/Changes	(revision 13255)
+++ /trunk/Nebulous-Server/Changes	(revision 13256)
@@ -2,4 +2,5 @@
 
 0.05
+    - change all Nebulous::Client public methods to behave in list context
     - rework the getmountedvol() stored procedure to attempt to work around
       what appears to be some nasty transacational isolation leak throught that
Index: /trunk/Nebulous/Changes
===================================================================
--- /trunk/Nebulous/Changes	(revision 13255)
+++ /trunk/Nebulous/Changes	(revision 13256)
@@ -2,4 +2,5 @@
 
 0.05
+    - change all Nebulous::Client public methods to behave in list context
     - rework the getmountedvol() stored procedure to attempt to work around
       what appears to be some nasty transacational isolation leak throught that
Index: /trunk/Nebulous/lib/Nebulous/Client.pm
===================================================================
--- /trunk/Nebulous/lib/Nebulous/Client.pm	(revision 13255)
+++ /trunk/Nebulous/lib/Nebulous/Client.pm	(revision 13256)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004  Joshua Hoblitt
 #
-# $Id: Client.pm,v 1.33 2007-05-05 00:02:53 jhoblitt Exp $
+# $Id: Client.pm,v 1.34 2007-05-05 00:14:17 jhoblitt Exp $
 
 package Nebulous::Client;
@@ -109,5 +109,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -145,5 +145,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -189,5 +189,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -198,5 +198,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -326,5 +326,5 @@
             # don't bother to spin lock if the object doesn't exist
             if ( $response->faultstring =~ /storage object does not exist/ ) {
-                return undef;
+                return;
             }
 
@@ -346,5 +346,5 @@
     $log->debug( "leaving" );
     
-    return $locked ? 1 : undef;
+    $locked ? return 1 : return;
 }
 
@@ -375,5 +375,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -387,5 +387,5 @@
     $log->debug( "leaving" );
     
-    return $unlocked ? 1 : undef;
+    $unlocked ? return 1 : return;
 }
 
@@ -407,5 +407,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -447,5 +447,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -528,5 +528,5 @@
         } else {
             $log->debug( "leaving" );
-            return undef;
+            return;
         }
     }
@@ -538,5 +538,5 @@
             $log->warn( "write not allowed with multiple instances" );
             $log->debug( "leaving" );
-            return undef;
+            return;
         }
 
@@ -606,5 +606,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -619,5 +619,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -651,5 +651,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -684,5 +684,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
@@ -716,5 +716,5 @@
         $log->debug( "leaving" );
 
-        return undef;
+        return;
     }
 
