diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-08-09 08:43:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:01:37 -0500 |
commit | 09d33c5612cd9e8904675144bada848a81b92db6 (patch) | |
tree | b883cdad74727da65cafaa0c2f9201f84bd1c36d /source4/nsswitch | |
parent | 9b1cdd45ebaf70fd6160d4805931c5ee31dddcde (diff) | |
download | samba-09d33c5612cd9e8904675144bada848a81b92db6.tar.gz samba-09d33c5612cd9e8904675144bada848a81b92db6.tar.bz2 samba-09d33c5612cd9e8904675144bada848a81b92db6.zip |
r24286: (missed from previous commit)
A number of machines on the build farm fail because while they use
SOCKET_WRAPPER, they don't compile with --enable-developer. As such
the winbind tests fail.
We need to ensure that on production systems we never have
SOCKET_WRAPPER set, or this could be a security issue.
Andrew Bartlett
(This used to be commit 3d2dbcf50dbe3d36ec86e1bc1d7bdcb72dbdef00)
Diffstat (limited to 'source4/nsswitch')
-rw-r--r-- | source4/nsswitch/winbindd_nss.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/nsswitch/winbindd_nss.h b/source4/nsswitch/winbindd_nss.h index 68aa41f45e..75c040d830 100644 --- a/source4/nsswitch/winbindd_nss.h +++ b/source4/nsswitch/winbindd_nss.h @@ -40,7 +40,7 @@ #define WINBINDD_DOMAIN_ENV "WINBINDD_DOMAIN" /* Environment variables */ #define WINBINDD_DONT_ENV "_NO_WINBINDD" -#ifdef DEVELOPER +#ifdef SOCKET_WRAPPER #define WINBINDD_SOCKET_DIR_ENV "WINBINDD_SOCKET_DIR" #endif |