From 162c9658ba799ee024c774fa8b1d613dc2c58cb5 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 14 May 2020 06:50:09 +0000 Subject: ntux_cmd_chmod(): added initial --owner and --group support. --- src/output/ntux_output_error.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/output') 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) -- cgit v1.2.3