From 1417a7f9d00ce5f36c6656a844c7636a3519cfa1 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 13 Jun 2015 12:14:38 +0200 Subject: [PATCH 1/1] minor textual changes from @marshmellow42 --- client/cmdcrc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/cmdcrc.c b/client/cmdcrc.c index 82b1f8b8..7fc8bd6e 100644 --- a/client/cmdcrc.c +++ b/client/cmdcrc.c @@ -430,14 +430,14 @@ int CmdrevengSearch(const char *Cmd){ if (ans) { //test for match if (memcmp(result, inCRC, crcChars)==0){ - PrintAndLog("\nFound a match!\nModel: %s\nValue: %s\n",Models[i], result); + PrintAndLog("\nFound a possible match!\nModel: %s\nValue: %s\n",Models[i], result); //optional - stop searching if found... found = true; } else { if (crcChars > 2){ char *swapEndian = SwapEndianStr(result, crcChars, crcChars); if (memcmp(swapEndian, inCRC, crcChars)==0){ - PrintAndLog("\nFound a match!\nModel: %s\nValue EndianSwapped: %s\n",Models[i], swapEndian); + PrintAndLog("\nFound a possible match!\nModel: %s\nValue EndianSwapped: %s\n",Models[i], swapEndian); //optional - stop searching if found... found = true; } @@ -451,14 +451,14 @@ int CmdrevengSearch(const char *Cmd){ if (ans) { //test for match if (memcmp(revResult, inCRC, crcChars)==0){ - PrintAndLog("\nFound a match!\nModel Reversed: %s\nValue: %s\n",Models[i], revResult); + PrintAndLog("\nFound a possible match!\nModel Reversed: %s\nValue: %s\n",Models[i], revResult); //optional - stop searching if found... found = true; } else { if (crcChars > 2){ char *swapEndian = SwapEndianStr(revResult, crcChars, crcChars); if (memcmp(swapEndian, inCRC, crcChars)==0){ - PrintAndLog("\nFound a match!\nModel Reversed: %s\nValue EndianSwapped: %s\n",Models[i], swapEndian); + PrintAndLog("\nFound a possible match!\nModel Reversed: %s\nValue EndianSwapped: %s\n",Models[i], swapEndian); //optional - stop searching if found... found = true; } @@ -473,4 +473,4 @@ int CmdrevengSearch(const char *Cmd){ } if (!found) PrintAndLog("\nNo matches found\n"); return 1; -} \ No newline at end of file +} -- 2.39.5