diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-11-17 21:35:23 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-11-19 12:31:03 +0300 |
commit | 31549ac997a12bdb70b76cae8b46d4c729bb1243 (patch) | |
tree | a07454664d4584145d8eeb438803222c4589debf /openssl/client/client.cxx | |
parent | 3c5665c690064e91b912fe2df01735c78e3d47be (diff) |
Rename rsautl command to pkeyutl
Note that the rsautl command name is still accepted for backward compatibility.
Diffstat (limited to 'openssl/client/client.cxx')
-rw-r--r-- | openssl/client/client.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/client/client.cxx b/openssl/client/client.cxx index 2e76f31..72ee18f 100644 --- a/openssl/client/client.cxx +++ b/openssl/client/client.cxx @@ -59,7 +59,7 @@ namespace openssl return p.wait () ? 0 : 1; } - if (cmd != "rsautl") + if (cmd != "pkeyutl" && cmd != "rsautl") fail << "openssl-client command expected" << info << "run '" << argv[0] << " --help' for more information"; |