diff options
author | Michal Zidek <mzidek@redhat.com> | 2013-09-12 19:45:39 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-13 17:27:52 +0200 |
commit | fb1613b7f7deaa32957428af0e20b9a73e0f63e9 (patch) | |
tree | 56f4d1447d098642da8352386d2fdf8ff55249af /src | |
parent | caf576da562bf7bd30e74ad921c1212ec7d230bc (diff) | |
download | sssd-fb1613b7f7deaa32957428af0e20b9a73e0f63e9.tar.gz sssd-fb1613b7f7deaa32957428af0e20b9a73e0f63e9.tar.xz sssd-fb1613b7f7deaa32957428af0e20b9a73e0f63e9.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.
Diffstat (limited to 'src')
-rw-r--r-- | src/sss_client/nss_mc_common.c | 4 |
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; } |