mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
zkey: Fix typos in error message
Use a colon instead of a semicolon in the message. Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
committed by
Steffen Eiden
parent
7a2c5dc980
commit
b27b8e3cd3
+2
-2
@@ -922,7 +922,7 @@ int generate_secure_key_random(int pkey_fd, const char *keyfile,
|
||||
|
||||
genseck2.type = key_type_to_pkey_type(key_type);
|
||||
if (genseck2.type == 0) {
|
||||
warnx("Key-type not supported; %s", key_type);
|
||||
warnx("Key-type not supported: %s", key_type);
|
||||
return -ENOTSUP;
|
||||
}
|
||||
|
||||
@@ -1084,7 +1084,7 @@ int generate_secure_key_clear(int pkey_fd, const char *keyfile,
|
||||
|
||||
clr2seck2.type = key_type_to_pkey_type(key_type);
|
||||
if (clr2seck2.type == 0) {
|
||||
warnx("Key-type not supported; %s", key_type);
|
||||
warnx("Key-type not supported: %s", key_type);
|
||||
return -ENOTSUP;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user