Skip to content

Commit 6cb5332

Browse files
fix: block filter added to block list, not allow list (#279)
Update build.rs Fixes allowlist -> blocklist Signed-off-by: marcbrevoort-cyberhive <[email protected]>
1 parent 90c7f2d commit 6cb5332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oqs-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn generate_bindings(includedir: &Path, headerfile: &str, allow_filter: &str, bl
2626
.allowlist_var(allow_filter)
2727
.blocklist_type(block_filter)
2828
.blocklist_function(block_filter)
29-
.allowlist_var(block_filter)
29+
.blocklist_var(block_filter)
3030
// Use core and libc
3131
.use_core()
3232
.ctypes_prefix("::libc")

0 commit comments

Comments
 (0)