diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-09 03:25:39 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-09 03:25:39 +0000 |
commit | a0d46643357c08e576a47394d2a25ba34ed49086 (patch) | |
tree | 1ce2592412ba7c69a70375515daefba8e5fe972f | |
parent | 4072006fecf56bebf113fe1d4566156c0d89bacc (diff) | |
download | samba-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)
-rw-r--r-- | source3/nsswitch/winbindd.c | 14 |
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) |