Skip to content

Commit

Permalink
rc5, tiny bug
Browse files Browse the repository at this point in the history
  • Loading branch information
limpkin committed Apr 29, 2015
1 parent 9116478 commit b642aef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Binary file modified source_code/Mooltipass.atsuo
Binary file not shown.
11 changes: 9 additions & 2 deletions source_code/src/LOGIC/logic_aes_and_comms.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,15 @@ uint16_t searchForServiceName(uint8_t* name, uint8_t mode, uint8_t type)
}
while (next_node_addr != NODE_ADDR_NULL);

// We didn't find the service, return first node
return getStartingParentAddress();
if(mode == COMPARE_MODE_COMPARE)
{
// We didn't find the service, return first node
return getStartingParentAddress();
}
else
{
return NODE_ADDR_NULL;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion source_code/src/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v1:
RC5:
- possible Mooltipass freeze bug solved when inserting/removing smartcard
- possibility to cancel user input request boolean in eeprom
- lower casing all service names
Expand Down

0 comments on commit b642aef

Please sign in to comment.