Skip to content

Commit

Permalink
Hitch code review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
kareem-wolfssl committed Jul 10, 2023
1 parent 2d0cc65 commit 8906ee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/hitch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
# Do this before configuring so that it only detects the updated list of
# tests
- if: ${{ matrix.ignore-tests }}
name: Remove tests that we want to ignore (13, 15, 39)
name: Remove tests that we want to ignore
working-directory: ./hitch/src/tests
run: |
rm ${{ matrix.ignore-tests }}
Expand All @@ -83,8 +83,7 @@ jobs:
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/build-dir/lib:$LD_LIBRARY_PATH
ldd src/hitch | grep wolfssl
# Note: Exit status 77 means a test was skipped, this is valid and expected.
- name: Run hitch tests, skipping 13, 15 and 39
- name: Run hitch tests, skipping ignored tests
working-directory: ./hitch
run: |
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/build-dir/lib:$LD_LIBRARY_PATH
Expand Down
2 changes: 1 addition & 1 deletion wolfssl/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -5810,7 +5810,7 @@ struct WOLFSSL {
#define SSL_STORE(ssl) ((ssl)->x509_store_pt ? (ssl)->x509_store_pt : \
((ssl)->ctx->x509_store_pt ? (ssl)->ctx->x509_store_pt : \
&(ssl)->ctx->x509_store))
#define CTX_STORE(ssl) ((ctx)->x509_store_pt ? (ctx)->x509_store_pt : \
#define CTX_STORE(ctx) ((ctx)->x509_store_pt ? (ctx)->x509_store_pt : \
&(ctx)->x509_store)
#else
#define SSL_CM(ssl) (ssl)->ctx->cm
Expand Down

0 comments on commit 8906ee9

Please sign in to comment.