diff options
author | Michael Adam <obnox@samba.org> | 2011-07-26 12:53:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-07-28 11:17:29 +0200 |
commit | c2aa8e5d6377481cec6f36fea8d3165c5d99e098 (patch) | |
tree | 00fb8657fcd5a4d8490a3f4df1033e11d9d03e57 /source3/param | |
parent | c9efe307cb288eb6cabbe0f781326164e9e30414 (diff) | |
download | samba-c2aa8e5d6377481cec6f36fea8d3165c5d99e098.tar.gz samba-c2aa8e5d6377481cec6f36fea8d3165c5d99e098.tar.xz samba-c2aa8e5d6377481cec6f36fea8d3165c5d99e098.zip |
s3:loadparm: make lp_set_in_client() static - only used in wrappers in loadparm now.
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 42b9bad1ac7..5459365c37d 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -8940,7 +8940,7 @@ void gfree_loadparm(void) /*************************************************************************** Allow client apps to specify that they are a client ***************************************************************************/ -void lp_set_in_client(bool b) +static void lp_set_in_client(bool b) { in_client = b; } |