Skip to content

Commit

Permalink
fix: using the auto-detected openssl path in sslsniff (eunomia-bpf#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
rphang authored and hp77-creator committed May 11, 2024
1 parent 173fce5 commit 1d0946c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/sslsniff/sslsniff.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ int main(int argc, char **argv) {
if (env.openssl) {
char *openssl_path = find_library_path("libssl.so");
printf("OpenSSL path: %s\n", openssl_path);
attach_openssl(obj, "/lib/x86_64-linux-gnu/libssl.so.3");
attach_openssl(obj, openssl_path);
}
if (env.gnutls) {
char *gnutls_path = find_library_path("libgnutls.so");
Expand Down

0 comments on commit 1d0946c

Please sign in to comment.