From fcf23c0d1fe35914f0f6a116f54d2d34a7dfa4d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20R.=20Sede=C3=B1o?= Date: Sun, 7 Feb 2010 17:50:47 -0500 Subject: [PATCH 09/13] Add libgss to the unix gssapi library search PuTTY used to search for this library as well. --- unix/uxgss.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/unix/uxgss.c b/unix/uxgss.c index 396324e..e6707cb 100644 --- a/unix/uxgss.c +++ b/unix/uxgss.c @@ -16,6 +16,9 @@ int ssh_gss_init(void) /* 2) MIT Kerberos's GSSAPI Library */ if (!gsslib) gsslib = dlopen("libgssapi_krb5.so.2", RTLD_LAZY); + /* 3) Sun's GSSAPI Library */ + if (!gsslib) + gsslib = dlopen("libgss.so.1", RTLD_LAZY); /* Bind function pointers here. */ if (gsslib) { -- 1.6.6