summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-07-09 03:25:39 +0000
committerGerald Carter <jerry@samba.org>2003-07-09 03:25:39 +0000
commita0d46643357c08e576a47394d2a25ba34ed49086 (patch)
tree1ce2592412ba7c69a70375515daefba8e5fe972f /source3
parent4072006fecf56bebf113fe1d4566156c0d89bacc (diff)
downloadsamba-a0d46643357c08e576a47394d2a25ba34ed49086.tar.gz
samba-a0d46643357c08e576a47394d2a25ba34ed49086.tar.bz2
samba-a0d46643357c08e576a47394d2a25ba34ed49086.zip
fix linking issues in winbindd with become/unbecome_root() in passdb.c
(This used to be commit 389fe1e51abb533a781f69731a75771cb846d850)
Diffstat (limited to 'source3')
-rw-r--r--source3/nsswitch/winbindd.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c
index ff9d0b90b9..e65b03c30e 100644
--- a/source3/nsswitch/winbindd.c
+++ b/source3/nsswitch/winbindd.c
@@ -27,6 +27,20 @@
BOOL opt_nocache = False;
BOOL opt_dual_daemon = False;
+/*****************************************************************************
+ stubb functions
+****************************************************************************/
+
+void become_root( void )
+{
+ return;
+}
+
+void unbecome_root( void )
+{
+ return;
+}
+
/* Reload configuration */
static BOOL reload_services_file(BOOL test)