From c1acbea74a04d863f4fea93793a1a971de9e5651 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 12 Mar 2012 11:23:33 -0500 Subject: [PATCH] Update: change return codes enum to start at 131 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_errors/c/errors.h b/level_0/f_errors/c/errors.h index a33c100..c1d42ab 100644 --- a/level_0/f_errors/c/errors.h +++ b/level_0/f_errors/c/errors.h @@ -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, -- 1.8.3.1