Skip to content

Commit

Permalink
Allow list-keys and list-commands to be run without a running server.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Dec 15, 2015
1 parent 6f417ec commit 9d88d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd-list-keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand All @@ -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
};

Expand Down

0 comments on commit 9d88d82

Please sign in to comment.