diff options
author | midipix <writeonce@midipix.org> | 2020-05-14 06:50:09 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-05-14 07:18:54 +0000 |
commit | 162c9658ba799ee024c774fa8b1d613dc2c58cb5 (patch) | |
tree | 9fca2c9118d5f0b8966e367ffd3cfc43f8c4a1cf /src/output | |
parent | 354869228432b19b7eda7fc2cf186bf980e02c4c (diff) | |
download | ntux-162c9658ba799ee024c774fa8b1d613dc2c58cb5.tar.bz2 ntux-162c9658ba799ee024c774fa8b1d613dc2c58cb5.tar.xz |
ntux_cmd_chmod(): added initial --owner and --group support.
Diffstat (limited to 'src/output')
-rw-r--r-- | src/output/ntux_output_error.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/output/ntux_output_error.c b/src/output/ntux_output_error.c index b500eb5..be58ba1 100644 --- a/src/output/ntux_output_error.c +++ b/src/output/ntux_output_error.c @@ -58,7 +58,10 @@ static const char * ntux_output_strerror( return ictx->errsbuf; } - if (erri->eflags & NTUX_ERROR_CUSTOM) + if ((erri->eflags & NTUX_ERROR_CUSTOM) && (erri->elibcode == NTUX_ERR_NOT_IMPLEMENTED)) + return "status: support for one or more option values is not yet implemented"; + + else if (erri->eflags & NTUX_ERROR_CUSTOM) return "flow error: unexpected condition or other"; else if (erri->eflags & NTUX_ERROR_NESTED) |