summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Zidek <mzidek@redhat.com>2013-09-12 19:45:39 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-13 17:40:41 +0200
commite2bf93a888609aa2e4ae4ebb143f8d342568fb5f (patch)
treedbe73d36318cadf18a0cc203fbd5b5b332f9efa9
parent891792b7e2939f017245c6c579261ff6679cd0e9 (diff)
downloadsssd-e2bf93a888609aa2e4ae4ebb143f8d342568fb5f.tar.gz
sssd-e2bf93a888609aa2e4ae4ebb143f8d342568fb5f.tar.xz
sssd-e2bf93a888609aa2e4ae4ebb143f8d342568fb5f.zip
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.
-rw-r--r--src/sss_client/nss_mc_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sss_client/nss_mc_common.c b/src/sss_client/nss_mc_common.c
index 5d36c47ad..a0a70abc0 100644
--- a/src/sss_client/nss_mc_common.c
+++ b/src/sss_client/nss_mc_common.c
@@ -108,8 +108,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;
}