Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix krb5 library SO name in the gcc api shim
The library name used in the shim is a name of the build time library which
is usually installed only for development purposes. We should use
libgssapi_krb5.so.2 which is the underlying runtime library.
  • Loading branch information
janvorli authored and github-actions committed Sep 24, 2021
commit 64ac6b04e3b73134d27dc9e759d858ae851913f7
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static void* volatile s_gssLib = NULL;
#define GSS_C_NT_HOSTBASED_SERVICE (*GSS_C_NT_HOSTBASED_SERVICE_ptr)
#define gss_mech_krb5 (*gss_mech_krb5_ptr)

#define gss_lib_name "libgssapi_krb5.so"
#define gss_lib_name "libgssapi_krb5.so.2"

static int32_t ensure_gss_shim_initialized()
{
Expand Down