From cf1d69ae0bb4ca6182cfa838fafe429f127e1980 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 19 Oct 2012 18:06:46 +0200 Subject: s3: Make winbindd_register_handlers static --- source3/winbindd/winbindd.c | 2 +- source3/winbindd/winbindd_proto.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index eba5b091aa..578b21d1c7 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -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 */ diff --git a/source3/winbindd/winbindd_proto.h b/source3/winbindd/winbindd_proto.h index 5cc90f2ab0..bf8dbf77b1 100644 --- a/source3/winbindd/winbindd_proto.h +++ b/source3/winbindd/winbindd_proto.h @@ -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); -- cgit