From f5b23103d7f73f1b5e5828133f20e8914f7e2a3e Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 7 Jan 2009 14:58:43 +0000 Subject: (svn r14896) -Codechange: remove an unused constant and the related dead code. --- src/command_type.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/command_type.h') diff --git a/src/command_type.h b/src/command_type.h index ccbd3704d..ccc0df26c 100644 --- a/src/command_type.h +++ b/src/command_type.h @@ -324,9 +324,8 @@ enum { * This enumeration defines some flags which are binary-or'ed on a command. */ enum { - CMD_NETWORK_COMMAND = 0x0800, ///< execute the command without sending it on the network - CMD_NO_TEST_IF_IN_NETWORK = 0x1000, ///< When enabled, the command will bypass the no-DC_EXEC round if in network - CMD_SHOW_NO_ERROR = 0x2000, ///< do not show the error message + CMD_NETWORK_COMMAND = 0x0100, ///< execute the command without sending it on the network + CMD_NO_TEST_IF_IN_NETWORK = 0x0200, ///< When enabled, the command will bypass the no-DC_EXEC round if in network CMD_FLAGS_MASK = 0xFF00, ///< mask for all command flags CMD_ID_MASK = 0x00FF, ///< mask for the command ID }; -- cgit v1.2.3-54-g00ecf