summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorKevin Coffman <kwc@citi.umich.edu>2011-06-30 11:13:38 -0400
committerSteve Dickson <steved@redhat.com>2011-06-30 11:13:38 -0400
commit84a20cb1f89ff0a2eebd8cc75af5fc00f4d81967 (patch)
treecd0d663df85b88297952d7e6724df525e0bdd861 /aclocal
parentd2dea92e1f68fb7a54960a2760e4c0c97d51f8ff (diff)
downloadnfs-utils-84a20cb1f89ff0a2eebd8cc75af5fc00f4d81967.tar.gz
nfs-utils-84a20cb1f89ff0a2eebd8cc75af5fc00f4d81967.tar.xz
nfs-utils-84a20cb1f89ff0a2eebd8cc75af5fc00f4d81967.zip
Add requirement for newer libgssglue for svcgssd -n option
SNAFU. This came to my attention minutes after 1.2.4 was released... Changes in commit d6c1b35c require that gss_acquire_cred() is now called when the "-n" option is used. This requires an updated libgssglue which properly handles name GSS_C_NO_NAME as input to gss_import_name()/gss_acquire_cred(). Add a requirement for the newer version. Without the newer libgssglue, when svcgssd is started with "-n" you will see the error message, "ERROR: GSS-API: error in gss_acquire_cred(): GSS_S_BAD_NAME (An invalid name was supplied) - Unknown error" Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/rpcsec_vers.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal/rpcsec_vers.m4 b/aclocal/rpcsec_vers.m4
index 25902ca..8218372 100644
--- a/aclocal/rpcsec_vers.m4
+++ b/aclocal/rpcsec_vers.m4
@@ -1,7 +1,7 @@
dnl Checks librpcsec version
AC_DEFUN([AC_RPCSEC_VERSION], [
- PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.1])
+ PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.3])
dnl TI-RPC replaces librpcsecgss
if test "$enable_tirpc" = no; then