Skip to content

Commit

Permalink
zkey-ekmfweb: Fix typos in messages
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
  • Loading branch information
ifranzki authored and hoeppnerj committed Feb 19, 2021
1 parent dfd9f52 commit e506c94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions zkey/ekmfweb/zkey-ekmfweb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2520,7 +2520,7 @@ static int _configure_connection(struct plugin_handle *ph,
"[y/N]? ",
program_invocation_short_name);
if (!prompt_for_yes(ph->verbose)) {
_set_error(ph, "Opertion aborted by user");
_set_error(ph, "Operation aborted by user");
return -ECANCELED;
}
}
Expand Down Expand Up @@ -2651,10 +2651,10 @@ static int _configure_connection(struct plugin_handle *ph,
goto out;
}
}
printf("%s: Is this the EKMF Web server you intent to work with "
printf("%s: Is this the EKMF Web server you intend to work with "
"[y/N]? ", program_invocation_short_name);
if (!prompt_for_yes(ph->verbose)) {
_set_error(ph, "Opertion aborted by user");
_set_error(ph, "Operation aborted by user");
rc = -ECANCELED;
goto out;
}
Expand Down Expand Up @@ -2948,7 +2948,7 @@ static int _generate_identity_key(struct plugin_handle *ph)
printf("%s: Re-generate the identity key [y/N]? ",
program_invocation_short_name);
if (!prompt_for_yes(ph->verbose)) {
_set_error(ph, "Opertion aborted by user");
_set_error(ph, "Operation aborted by user");
return -ECANCELED;
}
} else {
Expand Down Expand Up @@ -3600,7 +3600,7 @@ static int _register_client(struct plugin_handle *ph, const char *cert_file,
printf("%s: Re-register the zkey client [y/N]? ",
program_invocation_short_name);
if (!prompt_for_yes(ph->verbose)) {
_set_error(ph, "Opertion aborted by user");
_set_error(ph, "Operation aborted by user");
return -ECANCELED;
}
}
Expand Down

0 comments on commit e506c94

Please sign in to comment.