diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-15 20:16:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:44 -0500 |
commit | 5b18cf22680c76abb1262a6b75a30b8a37899467 (patch) | |
tree | b845941a1bac81eceaba11c7f885735e1ace20e2 /source4/utils | |
parent | 51b0f62b8f0d6350b7706c5b7fd52f856c2756de (diff) | |
download | samba-5b18cf22680c76abb1262a6b75a30b8a37899467.tar.gz samba-5b18cf22680c76abb1262a6b75a30b8a37899467.tar.bz2 samba-5b18cf22680c76abb1262a6b75a30b8a37899467.zip |
r6795: Make some functions static and remove some unused ones.
(This used to be commit 46509eb89980bfe6dabd71264d570ea356ee5a22)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/ntlm_auth.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 3bc479e061..4c7286a4c1 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -86,11 +86,11 @@ static const struct { extern int winbindd_fd; -const char *opt_username; -const char *opt_domain; -const char *opt_workstation; -const char *opt_password; -int opt_multiplex; +static const char *opt_username; +static const char *opt_domain; +static const char *opt_workstation; +static const char *opt_password; +static int opt_multiplex; static void mux_printf(unsigned int mux_id, const char *format, ...) PRINTF_ATTRIBUTE(2, 3); |