Skip to content

Commit

Permalink
Fix wrong macro
Browse files Browse the repository at this point in the history
  • Loading branch information
torben-hansen committed Mar 17, 2022
1 parent 83a3ffe commit d838f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/s2n_fork_detection.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
#include <unistd.h>


#if defined(S2N_MINHERIT_SUPPORTED) && defined(S2N_MINHERIT_SUPPORTED)
#error "Both S2N_MINHERIT_SUPPORTED and S2N_MINHERIT_SUPPORTED are defined. This should not be possible."
#if defined(S2N_MINHERIT_SUPPORTED) && defined(S2N_MADVISE_SUPPORTED)
#error "Both S2N_MINHERIT_SUPPORTED and S2N_MADVISE_SUPPORTED are defined. This should not be possible."
#endif

#if defined(S2N_MADVISE_SUPPORTED) && defined(MADV_WIPEONFORK)
Expand Down

0 comments on commit d838f27

Please sign in to comment.