diff options
author | David Howells <dhowells@redhat.com> | 2019-08-16 12:58:09 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-08-19 15:40:36 +0100 |
commit | 1274bc7020f934072f112d9a43a9db0265438a5f (patch) | |
tree | fa1b7b662d47a3007f55030000705c519c7b0eda | |
parent | 7f7e18cc55b7b22e46e258e5f694aba61a9f7c47 (diff) | |
download | keyutils-1274bc7020f934072f112d9a43a9db0265438a5f.tar.gz |
Put the keyctl get_persistent command in the right order
Put the keyctl get_persistent command in the right place in the alphabetic
command order.
Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r-- | keyctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,9 +84,9 @@ static const struct command commands[] = { { act_keyctl_dh_compute, "dh_compute", "<private> <prime> <base>" }, { act_keyctl_dh_compute_kdf, "dh_compute_kdf", "<private> <prime> <base> <len> <hash_name>" }, { act_keyctl_dh_compute_kdf_oi, "dh_compute_kdf_oi", "<private> <prime> <base> <len> <hash_name>" }, + { act_keyctl_get_persistent, "get_persistent", "<keyring> [<uid>]" }, { act_keyctl_instantiate, "instantiate","<key> <data> <keyring>" }, { act_keyctl_invalidate,"invalidate", "<key>" }, - { act_keyctl_get_persistent, "get_persistent", "<keyring> [<uid>]" }, { act_keyctl_link, "link", "<key> <keyring>" }, { act_keyctl_list, "list", "<keyring>" }, { act_keyctl_move, "move", "[-f] <key> <from_keyring> <to_keyring>" }, |