Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lib/ykpiv.c
Original file line number Diff line number Diff line change
Expand Up @@ -2872,12 +2872,6 @@ static ykpiv_rc _ykpiv_auth_deauthenticate(ykpiv_state *state) {
}

bool is_version_compatible(ykpiv_state *state, uint8_t major, uint8_t minor, uint8_t patch) {
#ifdef DEBUG_YK
if (state->ver.major == 0) {
return true;
}
#endif

// Beta devices are always assigned version 0.0.1
if (state->ver.major == 0 && state->ver.minor == 0 && state->ver.patch == 1) {
return true;
Expand Down
Loading