From f48be9b35b351afbb7b70877c431693c7af886be Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Thu, 12 Sep 2013 19:45:39 +0200 Subject: Rename _SSS_MC_SPECIAL If the environment variable _SSS_MC_SPECIAL is set to "NO", the mmap cache is skipped in the client code. The name is not very descriptive. This patch renames the variable to SSS_NSS_USE_MEMCACHE. --- src/sss_client/nss_mc_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sss_client/nss_mc_common.c b/src/sss_client/nss_mc_common.c index 78490bef0..c53077910 100644 --- a/src/sss_client/nss_mc_common.c +++ b/src/sss_client/nss_mc_common.c @@ -113,8 +113,8 @@ errno_t sss_nss_mc_get_ctx(const char *name, struct sss_cli_mc_ctx *ctx) char *envval; int ret; - envval = getenv("_SSS_MC_SPECIAL"); - if (envval && strcmp(envval, "NO") == 0) { + envval = getenv("SSS_NSS_USE_MEMCACHE"); + if (envval && strcasecmp(envval, "NO") == 0) { return EPERM; } -- cgit