summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-06-28 22:02:58 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-06-28 22:02:58 +1000
commit7e20919d5ba9244362503e450273938a7cc94796 (patch)
treec896e3bf25d491e6f4ebb6ca0c23a5e01aef8571
parentfa361354433fb9a5c09c84997a7c51f3052c294e (diff)
downloadsamba-7e20919d5ba9244362503e450273938a7cc94796.tar.gz
dynconfig changes for 'winbind privileged dir' changes.
-rw-r--r--source/dynconfig/config.mk4
-rw-r--r--source/dynconfig/dynconfig.c3
-rw-r--r--source/dynconfig/dynconfig.h1
3 files changed, 7 insertions, 1 deletions
diff --git a/source/dynconfig/config.mk b/source/dynconfig/config.mk
index a353ba12147..4956fda5196 100644
--- a/source/dynconfig/config.mk
+++ b/source/dynconfig/config.mk
@@ -19,6 +19,8 @@ $(dynconfigsrcdir)/dynconfig.o: CFLAGS+=-DCONFIGFILE=\"$(CONFIGFILE)\" -DBINDIR=
-DPRIVATE_DIR=\"$(privatedir)\" \
-DMODULESDIR=\"$(modulesdir)\" -DJSDIR=\"$(JSDIR)\" \
-DTORTUREDIR=\"$(TORTUREDIR)\" \
- -DSETUPDIR=\"$(SETUPDIR)\" -DWINBINDD_SOCKET_DIR=\"$(winbindd_socket_dir)\" \
+ -DSETUPDIR=\"$(SETUPDIR)\" \
+ -DWINBINDD_PRIVILEGED_SOCKET_DIR=\"$(winbindd_privileged_socket_dir)\" \
+ -DWINBINDD_SOCKET_DIR=\"$(winbindd_socket_dir)\" \
-DNTP_SIGND_SOCKET_DIR=\"$(ntp_signd_socket_dir)\"
diff --git a/source/dynconfig/dynconfig.c b/source/dynconfig/dynconfig.c
index ef5c40d6983..507570318d9 100644
--- a/source/dynconfig/dynconfig.c
+++ b/source/dynconfig/dynconfig.c
@@ -85,5 +85,8 @@ _PUBLIC_ const char *dyn_JSDIR = JSDIR;
/** Where to find the winbindd socket */
_PUBLIC_ const char *dyn_WINBINDD_SOCKET_DIR = WINBINDD_SOCKET_DIR;
+/** Where to find the winbindd privileged socket */
+_PUBLIC_ const char *dyn_WINBINDD_PRIVILEGED_SOCKET_DIR = WINBINDD_PRIVILEGED_SOCKET_DIR;
+
/** Where to find the NTP signing deamon socket */
_PUBLIC_ const char *dyn_NTP_SIGND_SOCKET_DIR = NTP_SIGND_SOCKET_DIR;
diff --git a/source/dynconfig/dynconfig.h b/source/dynconfig/dynconfig.h
index e77c13bab30..1bba1f07dba 100644
--- a/source/dynconfig/dynconfig.h
+++ b/source/dynconfig/dynconfig.h
@@ -38,4 +38,5 @@ extern const char *dyn_SWATDIR;
extern const char *dyn_JSDIR;
extern const char *dyn_SETUPDIR;
extern const char *dyn_WINBINDD_SOCKET_DIR;
+extern const char *dyn_WINBINDD_PRIVILEGED_SOCKET_DIR;
extern const char *dyn_NTP_SIGND_SOCKET_DIR;