From bf97c20a6c3b8d037663e23a39bcf2f003ec12ee Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Wed, 27 Apr 2016 11:53:02 -0400 Subject: Remove rpcsecgss library support librpcsecgss has not been used in years so and there is no longer an upstream for it so the support for the library has been removed Signed-off-by: Steve Dickson --- utils/gssd/gssd.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'utils/gssd') diff --git a/utils/gssd/gssd.c b/utils/gssd/gssd.c index 7ba27b1..810f872 100644 --- a/utils/gssd/gssd.c +++ b/utils/gssd/gssd.c @@ -866,21 +866,16 @@ main(int argc, char *argv[]) progname = argv[0]; initerr(progname, verbosity, fg); -#ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL - if (verbosity && rpc_verbosity == 0) - rpc_verbosity = verbosity; - authgss_set_debug_level(rpc_verbosity); -#elif HAVE_LIBTIRPC_SET_DEBUG +#ifdef HAVE_LIBTIRPC_SET_DEBUG /* - * Only set the libtirpc debug level if explicitly requested via -r... - * gssd is chatty enough as it is. + * Only set the libtirpc debug level if explicitly requested via -r. */ if (rpc_verbosity > 0) libtirpc_set_debug(progname, rpc_verbosity, fg); #else - if (rpc_verbosity > 0) - printerr(0, "Warning: rpcsec_gss library does not " - "support setting debug level\n"); + if (rpc_verbosity > 0) + printerr(0, "Warning: libtirpc does not " + "support setting debug levels\n"); #endif if (gssd_check_mechs() != 0) -- cgit