Index: /trunk/Nebulous-Server/bin/neb-voladm
===================================================================
--- /trunk/Nebulous-Server/bin/neb-voladm	(revision 42917)
+++ /trunk/Nebulous-Server/bin/neb-voladm	(revision 42918)
@@ -65,8 +65,9 @@
     pod2usage( -msg => "Options: --allocate, --available, --xattr, and --cab_id Require options --vhost or --vname", -exitval => 2 )
         unless defined $vhost or defined $vname;
-    pod2usage( -msg => "Options: --allocate, --available, and --xattr Must be 0 or 1", -exitval => 2)
+    pod2usage( -msg => "Options: --allocate and --available must be 0 or 1", -exitval => 2)
         if (defined $allocate and $allocate !~ m/^[01]$/)
-        or (defined $available and $available !~ m/^[01]$/)
-        or (defined $xattr and $xattr !~ m/^[01235]$/);
+        or (defined $available and $available !~ m/^[01]$/);
+    pod2usage( -msg => "Options: --xattr must be in the range 0-5", -exitval => 2)
+        if (defined $xattr and $xattr !~ m/^[012345]$/);
 }
 
