From 8a3fd80bcb0bc9a80a1b18680c8807c5f81e3d84 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(-) (limited to 'src/sss_client/nss_mc_common.c') diff --git a/src/sss_client/nss_mc_common.c b/src/sss_client/nss_mc_common.c index 400042eb1..bb2412a1b 100644 --- a/src/sss_client/nss_mc_common.c +++ b/src/sss_client/nss_mc_common.c @@ -96,8 +96,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