1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

fix linking issues in winbindd with become/unbecome_root() in passdb.c

This commit is contained in:
Gerald Carter 0001-01-01 00:00:00 +00:00
parent 9d0692a54f
commit 389fe1e51a

View File

@ -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)