Merge pull request #450 from hph86/2_fix_typo

Fix typo in nfc-mfclassic
This commit is contained in:
Markus Werle 2018-10-02 12:32:45 +02:00 committed by GitHub
commit 4ae4cc86f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -316,7 +316,7 @@ read_card(int read_unlocked)
//If the user is attempting an unlocked read, but has a direct-write type magic card, they don't //If the user is attempting an unlocked read, but has a direct-write type magic card, they don't
//need to use the R mode. We'll trigger a warning and let them proceed. //need to use the R mode. We'll trigger a warning and let them proceed.
if (magic2) { if (magic2) {
printf("Note: This card does not require an unlocked write (R) \n"); printf("Note: This card does not require an unlocked read (R) \n");
read_unlocked = 0; read_unlocked = 0;
} else { } else {
//If User has requested an unlocked read, but we're unable to unlock the card, we'll error out. //If User has requested an unlocked read, but we're unable to unlock the card, we'll error out.