Allow list-keys and list-commands to be run without a running server.

pull/243/head
nicm 2015-12-15 00:52:17 +00:00
parent 6f417ec943
commit 9d88d82d5e
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ const struct cmd_entry cmd_list_keys_entry = {
.args = { "t:T:", 0, 0 },
.usage = "[-t mode-table] [-T key-table]",
.flags = 0,
.flags = CMD_STARTSERVER,
.exec = cmd_list_keys_exec
};
@ -50,7 +50,7 @@ const struct cmd_entry cmd_list_commands_entry = {
.args = { "", 0, 0 },
.usage = "",
.flags = 0,
.flags = CMD_STARTSERVER,
.exec = cmd_list_keys_exec
};