From 0189455f5d9a0ae8ae6afd9c1ec6585c4cfb6f19 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sat, 21 Oct 2017 22:13:15 +0100 Subject: Remove CMD_EPERM as it is not used anywhere. --- include/ctables.h | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/include/ctables.h b/include/ctables.h index bc4226ea9..9376dbbcc 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -23,14 +23,17 @@ #pragma once -/** Used to indicate command success codes - */ +/** Used to indicate the result of trying to execute a command. */ enum CmdResult { - CMD_FAILURE = 0, /* Command exists, but failed */ - CMD_SUCCESS = 1, /* Command exists, and succeeded */ - CMD_INVALID = 2, /* Command doesnt exist at all! */ - CMD_EPERM = 3 /* Command failed because of a permission check */ + /** The command exists but its execution failed. */ + CMD_FAILURE = 0, + + /** The command exists and its execution succeeded. */ + CMD_SUCCESS = 1, + + /* The command does not exist. */ + CMD_INVALID = 2 }; /** Flag for commands that are only allowed from servers */ -- cgit v1.2.3