Rip out the old command parser, remove migration code

This commit is contained in:
Michael Stapelberg
2012-01-27 22:11:03 +00:00
parent 76ad5dac63
commit 3229f7677f
9 changed files with 22 additions and 1094 deletions

@@ -119,7 +119,7 @@ IPC_HANDLER(command) {
char *command = scalloc(message_size + 1);
strncpy(command, (const char*)message, message_size);
LOG("IPC: received: *%s*\n", command);
char *reply = parse_cmd((const char*)command);
char *reply = parse_command((const char*)command);
char *save_reply = reply;
free(command);