Skip to content

Commit

Permalink
ctx bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulscalise1 committed Jul 18, 2024
1 parent 1ee641f commit 47c505a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func CallAPI(cfg Configuration, request *http.Request) (*http.Response, error) {
fmt.Println(GetCurrentNetworkFunctionUsingAPI())

opensslCtx := CreateOpenSSLClientCtx(GetCurrentNetworkFunctionUsingAPI())
if opensslCtx != nil {
if opensslCtx == nil {
return nil, fmt.Errorf("Error Creating OpenSSL Context")
}

Expand Down

0 comments on commit 47c505a

Please sign in to comment.