Skip to content

Commit

Permalink
moving to predictable types
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Mar 26, 2024
1 parent 8baeedf commit b52aa64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
cp -r ../src/msspi/src/* ./
cp -r ../src/msspi/third_party/cprocsp/include/* ./include/
g++ -v
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -Wno-narrowing -I./include gostssl.cpp -c -o gostssl.o
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -Wno-narrowing -I./include msspi.cpp -c -o msspi.o
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -I./include gostssl.cpp -c -o gostssl.o
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -I./include msspi.cpp -c -o msspi.o
g++ -shared -o libgostssl.so gostssl.o msspi.o
- name: Perform CodeQL Analysis
Expand Down
2 changes: 1 addition & 1 deletion src/gostssl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ void gostssl_verifyhook( void * s, const char * host, unsigned * gost_status, ch
msspi_set_hostname( w->h, host );
msspi_set_verify_offline( w->h, offline );

unsigned verify_status = msspi_verify( w->h );
int32_t verify_status = msspi_verify( w->h );

switch( verify_status )
{
Expand Down
2 changes: 1 addition & 1 deletion src/msspi
Submodule msspi updated 2 files
+6 −6 src/msspi.cpp
+2 −2 src/msspi.h

0 comments on commit b52aa64

Please sign in to comment.