diff options
author | Max Kellermann <max@duempel.org> | 2008-10-22 21:40:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-22 21:40:44 +0200 |
commit | 51a6ee88f716377c20d5b4bfe8e95f1a87142ae2 (patch) | |
tree | 2760b8bcf82d443a35bf4409e3df78abb650d4d4 /src/client.c | |
parent | 69c563b511cf9ab849242c3b3069efb3769592ea (diff) | |
download | mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.tar.gz mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.tar.xz mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.zip |
command: no CamelCase
Eliminate CamelCase in all public and static functions.
Diffstat (limited to '')
-rw-r--r-- | src/client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.c b/src/client.c index f3f5f44ad..4f6aaf876 100644 --- a/src/client.c +++ b/src/client.c @@ -335,9 +335,9 @@ static int client_process_line(struct client *client, char *line) if (strcmp(line, CLIENT_LIST_MODE_END) == 0) { DEBUG("client %i: process command " "list\n", client->num); - ret = processListOfCommands(client, - client->cmd_list_OK, - client->cmd_list); + ret = command_process_list(client, + client->cmd_list_OK, + client->cmd_list); DEBUG("client %i: process command " "list returned %i\n", client->num, ret); @@ -379,7 +379,7 @@ static int client_process_line(struct client *client, char *line) } else { DEBUG("client %i: process command \"%s\"\n", client->num, line); - ret = processCommand(client, line); + ret = command_process(client, line); DEBUG("client %i: command returned %i\n", client->num, ret); |