const'ify command name variable in _COMMAND strcuture

This commit is contained in:
Alexander Barton 2010-06-26 00:37:06 +02:00
parent a68103771c
commit 8605e9c0fe
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ typedef struct _REQUEST /* vgl. RFC 2812, 2.3 */
typedef struct _COMMAND
{
char *name; /* command name */
const char *name; /* command name */
bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
CLIENT_TYPE type; /* valid client types (bit mask) */
long lcount, rcount; /* number of local and remote calls */