Index: trunk/Nebulous-Server/bin/nebdiskd
===================================================================
--- trunk/Nebulous-Server/bin/nebdiskd	(revision 18407)
+++ trunk/Nebulous-Server/bin/nebdiskd	(revision 18416)
@@ -3,5 +3,5 @@
 # Copyright (C) 2007  Joshua Hoblitt
 # 
-# $Id: nebdiskd,v 1.5 2008-06-20 03:34:28 jhoblitt Exp $
+# $Id: nebdiskd,v 1.6 2008-07-03 22:01:03 jhoblitt Exp $
 
 use strict;
@@ -189,6 +189,9 @@
 
     foreach my $path (@$mounts) {
-        stat File::Spec->canonpath($path) or warn "can not stat path: $path";
-        print "stated $path\n" if $debug;
+        if (stat File::Spec->canonpath($path)) {
+            print "stated $path\n" if $debug;
+        } else {
+            warn "can not stat path: $path";
+        }
     }
 }
