From 68aab0dacd013bd5eac61de8e3abd4e57d114d39 Mon Sep 17 00:00:00 2001 From: antona Date: Wed, 10 Aug 2005 11:33:10 +0000 Subject: [PATCH] Minor cleanup. --- ntfsprogs/ntfsdecrypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfsprogs/ntfsdecrypt.c b/ntfsprogs/ntfsdecrypt.c index 2e9ab238..e893c001 100644 --- a/ntfsprogs/ntfsdecrypt.c +++ b/ntfsprogs/ntfsdecrypt.c @@ -436,13 +436,13 @@ static ntfs_rsa_private_key ntfs_pkcs12_extract_rsa_key(u8 *pfx, int pfx_size, retry_verify: err = gnutls_pkcs12_verify_mac(pkcs12, password); if (err) { - fprintf(stderr, "Failed to verify the MAC (%s). Is the " - "password correct?\n", gnutls_strerror(err)); if (err == GNUTLS_E_MAC_VERIFY_FAILED && password && !strlen(password)) { password = NULL; goto retry_verify; } + fprintf(stderr, "Failed to verify the MAC (%s). Is the " + "password correct?\n", gnutls_strerror(err)); goto out; } for (bag_index = 0; ; bag_index++) {