From 9524e2fce1b7f644fef5f7c8134f72681d786e65 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 10 Nov 2011 12:45:54 +1100 Subject: param: calculate server role from security, and security from server role This allows smb.conf files from either the samba3 or samba4 tradition to come to the same value of server role, using the information in the smb.conf file. This is important so that tools like 'net getlocalsid' work against a Samba4 AD installation (yes, users have tried this). Andrew Bartlett Pair-Programmed-With: Amitay Isaacs --- script/mks3param.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'script') diff --git a/script/mks3param.pl b/script/mks3param.pl index 2679b5acae..3126af502c 100644 --- a/script/mks3param.pl +++ b/script/mks3param.pl @@ -95,6 +95,7 @@ sub print_header($$) $file->("\tbool (*load)(const char *filename);\n"); $file->("\tbool (*set_cmdline)(const char *pszParmName, const char *pszParmValue);\n"); $file->("\tvoid (*dump)(FILE *f, bool show_defaults, int maxtoprint);\n"); + $file->("\tint (*server_role)(void);\n"); } sub print_footer($$) -- cgit