summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2004-01-29 02:41:57 +0000
committerRichard Sharpe <sharpe@samba.org>2004-01-29 02:41:57 +0000
commiteea6e865f3ce3b72a5d6ae7af8168e5475c33f04 (patch)
treec8944c70c56530cd00d00595160a887da7b5972e
parent8ce5bd47a346e8a8cc2cbd52e8fd71ee06799884 (diff)
downloadsamba-eea6e865f3ce3b72a5d6ae7af8168e5475c33f04.tar.gz
samba-eea6e865f3ce3b72a5d6ae7af8168e5475c33f04.tar.bz2
samba-eea6e865f3ce3b72a5d6ae7af8168e5475c33f04.zip
Remove an unused parameter in winbindd (reload_services_file)
(This used to be commit 9a81094a0f0ca5c209f640c48b77522e5f81d28e)
-rw-r--r--source3/nsswitch/winbindd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c
index 3124ef6378..8a0d0f7573 100644
--- a/source3/nsswitch/winbindd.c
+++ b/source3/nsswitch/winbindd.c
@@ -30,7 +30,7 @@ BOOL opt_dual_daemon = True;
/* Reload configuration */
-static BOOL reload_services_file(BOOL test)
+static BOOL reload_services_file(void)
{
BOOL ret;
@@ -40,7 +40,6 @@ static BOOL reload_services_file(BOOL test)
pstrcpy(fname,lp_configfile());
if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
pstrcpy(dyn_CONFIGFILE,fname);
- test = False;
}
}
@@ -194,7 +193,7 @@ static void msg_reload_services(int msg_type, pid_t src, void *buf, size_t len)
{
/* Flush various caches */
flush_caches();
- reload_services_file(True);
+ reload_services_file();
}
/* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
@@ -843,7 +842,7 @@ int main(int argc, char **argv)
DEBUG(1, ("winbindd version %s started.\n", SAMBA_VERSION_STRING) );
DEBUGADD( 1, ( "Copyright The Samba Team 2000-2004\n" ) );
- if (!reload_services_file(False)) {
+ if (!reload_services_file()) {
DEBUG(0, ("error opening config file\n"));
exit(1);
}