1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

s3: Make winbindd_register_handlers static

This commit is contained in:
Volker Lendecke 2012-10-19 18:06:46 +02:00
parent 422ff2523d
commit cf1d69ae0b
2 changed files with 1 additions and 2 deletions

View File

@ -1074,7 +1074,7 @@ bool winbindd_use_cache(void)
return !opt_nocache;
}
void winbindd_register_handlers(bool foreground)
static void winbindd_register_handlers(bool foreground)
{
/* Setup signal handlers */

View File

@ -32,7 +32,6 @@ bool winbindd_setup_stdin_handler(bool parent, bool foreground);
bool winbindd_setup_sig_hup_handler(const char *lfile);
bool winbindd_use_idmap_cache(void);
bool winbindd_use_cache(void);
void winbindd_register_handlers(bool foreground);
const char *get_winbind_pipe_dir(void);
char *get_winbind_priv_pipe_dir(void);
int main(int argc, char **argv, char **envp);