diff options
author | Andreas Schneider <asn@samba.org> | 2014-02-20 10:34:49 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-04-17 14:56:06 +0200 |
commit | 2522bb80902d2e7677a25a85fa597022f20f1147 (patch) | |
tree | 190e9a597dda6cbc104659e141762ac3e7d781e6 /source3 | |
parent | c29fb2e6157c90e7f0c6b37e9923152d999e76dc (diff) | |
download | samba-2522bb80902d2e7677a25a85fa597022f20f1147.tar.gz |
selftest: Rename WINBINDD_SOCKET_DIR environment variable.
It is very confusing if the env var uses the same name as the define in
the source code. So prefix it with SELFTEST.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/torture/wbc_async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/wbc_async.c b/source3/torture/wbc_async.c index 8af95951eec..1a7495acad8 100644 --- a/source3/torture/wbc_async.c +++ b/source3/torture/wbc_async.c @@ -328,7 +328,7 @@ static const char *winbindd_socket_dir(void) if (nss_wrapper_enabled()) { const char *env_dir; - env_dir = getenv(WINBINDD_SOCKET_DIR_ENVVAR); + env_dir = getenv("SELFTEST_WINBINDD_SOCKET_DIR"); if (env_dir != NULL) { return env_dir; } |