Skip to content

Commit

Permalink
Merge Conflicts, CMAKE Typo Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbrown6 committed Dec 13, 2023
2 parents 848515f + 00cc9f0 commit 981abf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ option(CRYPTO_WOLFSSL "Cryptography Module - WolfSSL" OFF)
option(DEBUG "Debug" OFF)
option(KEY_CUSTOM "Key Module - Custom" OFF)
option(KEY_INTERNAL "Key Module - Internal" ON)
option(KEY_KMC "Key Module - KMC OFF")
option(KEY_KMC "Key Module - KMC" OFF)
option(SA_CUSTOM "Security Association - Custom" OFF)
option(MC_CUSTOM "Monitoring and Control - Custom" OFF)
option(MC_INTERNAL "Monitoring and Control - Internal" ON)
Expand Down
2 changes: 1 addition & 1 deletion src/core/crypto_tc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1449,4 +1449,4 @@ static int32_t crypto_handle_incrementing_nontransmitted_counter(uint8_t* dest,
}
if (!temp_counter) free(temp_counter);
return status;
}
}
4 changes: 3 additions & 1 deletion support/standalone/standalone.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@ void *crypto_standalone_tc_apply(void* sock)
if (!tc_out_ptr) free(tc_out_ptr);
if (tc_debug == 1)
{
#ifdef CRYPTO_STANDALONE_TC_APPLY_DEBUG
printf("\n");
#endif
}
}

Expand Down Expand Up @@ -750,4 +752,4 @@ int main(int argc, char* argv[])

printf("\n");
exit(status);
}
}

0 comments on commit 981abf6

Please sign in to comment.