]> Kevux Git Server - fll/commitdiff
Update: change return codes enum to start at 131
authorKevin Day <kevin@kevux.org>
Mon, 12 Mar 2012 16:23:33 +0000 (11:23 -0500)
committerKevin Day <kevin@kevux.org>
Mon, 12 Mar 2012 16:23:33 +0000 (11:23 -0500)
This should makes things sort of compatible with bash shell scripts.
Bash limits its return states to 255, so the fss return codes may still not always function..
This at least allows for some sort of compatibility.

level_0/f_errors/c/errors.h

index a33c100cb0d3940dba2f470ddb4cf470e572b8aa..c1d42ab3a8c34421dc26290827b48c9c1afc3893 100644 (file)
@@ -98,7 +98,7 @@ enum {
   #endif // _di_f_errors_booleans_
 
   #ifndef _di_f_errors_basic_
-    f_none,
+    f_none = 131,        // start at 131 to allow compatibility with the reserved bash return codes (keep in mind fss return codes can be larger than 255).
     f_dummy,             // to only be used as a placeholder
     f_warn,              // warning
     f_critical,