Added buglist to generate release notes

Fixed bug with PIN CHANGE VERIFICATION. All pins were accepted. is fixed now

git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@279 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
mmi
2017-11-16 14:07:46 +00:00
parent 8b543a537c
commit 9228f23248
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
- PIN change verification not functional
- Display backlight unstable
- Display cursor unstable
- HW validation menu outdated/unfunctional
- NumberOfStages Macro for presets not implemented well. It will be ignored when generating DEFAULT presets
- repairMenu has bad reference to getmainrepairmenu

View File

@@ -25,7 +25,6 @@
// Include files
// -----------------------------------------------------------------------------
#include <stdlib.h>
#include <string.h>
#include "PIN.h"
@@ -133,7 +132,7 @@ static ErrorStatus PIN_verifyInsertedPins(struct PIN* self)
{
ErrorStatus returnValue = SUCCESS;
if(memcmp(self->pinchangeFirstInsert, self->pinchangeSecondInsert, PIN_NUMBER_OF_DIGITS != 0))
if(strncmp(self->pinchangeFirstInsert, self->pinchangeSecondInsert, PIN_NUMBER_OF_DIGITS) != 0)
{
// Inserted PINs are not equal
returnValue = ERROR;