zkey: Fix typo in function name

Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Ingo Franzki
2019-06-19 08:51:39 +02:00
committed by Jan Höppner
parent cc82be3135
commit 7e6d782699

View File

@@ -3050,7 +3050,7 @@ out:
* @returnd 0 if the user confirmed the deletion, a negative errno value
* otherwise
*/
static int _keystore_propmp_for_remove(struct keystore *keystore,
static int _keystore_prompt_for_remove(struct keystore *keystore,
const char *name,
struct key_filenames *file_names)
{
@@ -3116,7 +3116,7 @@ int keystore_remove_key(struct keystore *keystore, const char *name,
goto out;
if (!quiet) {
if (_keystore_propmp_for_remove(keystore, name,
if (_keystore_prompt_for_remove(keystore, name,
&file_names) != 0)
goto out;
}