From: Andre Date: Sun, 21 Jan 2007 20:48:19 +0000 (+0100) Subject: rename server command array from cmd_struct to server_cmds X-Git-Tag: v0.2.15~89 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=93232d81798a269d4e4b6ec73588be5caa3c1e25 rename server command array from cmd_struct to server_cmds --- diff --git a/command.c b/command.c index acd53969..77908bf0 100644 --- a/command.c +++ b/command.c @@ -462,9 +462,9 @@ static int send_list_of_commands(int fd, struct server_command *cmd, /* always returns string that must be freed by the caller in handler */ static struct server_command *get_cmd_ptr(char *name, char **handler) { - struct server_command *cmd = cmd_struct; + struct server_command *cmd; - for (cmd = cmd_struct; cmd->name; cmd++) + for (cmd = server_cmds; cmd->name; cmd++) if (!strcmp(cmd->name, name)) { if (handler) *handler = para_strdup("para_server"); /* server commands */ @@ -492,7 +492,7 @@ int com_help(int fd, int argc, char **argv) if (argc < 2) { /* no argument given, print list of commands */ - if ((ret = send_list_of_commands(fd, cmd_struct, "server")) < 0) + if ((ret = send_list_of_commands(fd, server_cmds, "server")) < 0) return ret; mmd_lock(); handler = para_strdup(selectors[mmd->selector_num].name); diff --git a/server.cmd b/server.cmd index 3812088e..9d7c4b08 100644 --- a/server.cmd +++ b/server.cmd @@ -2,7 +2,7 @@ FN: server_command_list HC: prototypes for the server command handlers CC: array of server commands AT: server_command -AN: cmd_struct +AN: server_cmds IN: server user_list --- N: chs