Skip to content

Commit

Permalink
Fuzzer: Fix pkcs11 include file
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Sep 30, 2024
1 parent b42bfcb commit 084431f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
curl -o checksec.sh-2.5.0.tar.gz -L https://github.com/slimm609/checksec.sh/archive/refs/tags/2.5.0.tar.gz
tar xfz checksec.sh-2.5.0.tar.gz
cs() {
checksec.sh-2.5.0/checksec --file=/usr/bin/yubihsm-shell --format=json | jq -r ".[] | .$1"
checksec-2.5.0/checksec --file=/usr/bin/yubihsm-shell --format=json | jq -r ".[] | .$1"
}
if [ "`cs relro`" != "full" ]; then echo "relro is `cs relro`"; exit 1; fi
if [ "`cs canary`" != "yes" ]; then echo "canary is `cs canary`"; exit 1; fi
Expand Down
2 changes: 1 addition & 1 deletion pkcs11/fuzz/fuzz_get_attribute_value.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "yubihsm_fuzz.h"

extern "C" {
#include "pkcs11.h"
#include "pkcs11y.h"
#include "yubihsm_pkcs11.h"

uint8_t *backend_data;
Expand Down

0 comments on commit 084431f

Please sign in to comment.