1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

lib/param: Make lpcfg_equal_parameter static (again)

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andrew Bartlett 2014-01-27 15:34:06 +13:00 committed by Jeremy Allison
parent 3d6a0270e4
commit b709304a21
2 changed files with 1 additions and 7 deletions

View File

@ -1794,7 +1794,7 @@ void lpcfg_print_parameter(struct parm_struct *p, void *ptr, FILE * f)
* Check if two parameters are equal.
*/
bool lpcfg_equal_parameter(parm_type type, void *ptr1, void *ptr2)
static bool lpcfg_equal_parameter(parm_type type, void *ptr1, void *ptr2)
{
switch (type) {
case P_BOOL:

View File

@ -286,10 +286,4 @@ void init_printer_values(TALLOC_CTX *, struct loadparm_service *);
int num_parameters(void);
/**
* Check if two parameters are equal.
*/
bool lpcfg_equal_parameter(parm_type type, void *ptr1, void *ptr2);
#endif /* _LOADPARM_H */