Remove EX_CONFIG from default stopexits

I've used it for "remote" configuration which could change.
This commit is contained in:
C. McEnroe 2020-08-15 22:03:01 -04:00
parent 470e1ec7b6
commit 1eb6eb6d37
2 changed files with 1 additions and 3 deletions

View File

@ -119,8 +119,7 @@ The default list contains the values of
.Dv EX_DATAERR ,
.Dv EX_NOINPUT ,
.Dv EX_OSFILE ,
.Dv EX_CANTCREAT ,
.Dv EX_CONFIG
.Dv EX_CANTCREAT
defined in
.Xr sysexits 3 .
The exit status 127

View File

@ -200,7 +200,6 @@ int main(int argc, char *argv[]) {
setAdd(&stopExits, EX_NOINPUT);
setAdd(&stopExits, EX_OSFILE);
setAdd(&stopExits, EX_CANTCREAT);
setAdd(&stopExits, EX_CONFIG);
const char *pidPath = NULL;
const char *configPath = ETCDIR "/catsit.conf";