diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-10-02 14:29:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:07:40 -0500 |
commit | 8ffc4c1f97bf40cf19812b086cab2c48ff9aed9d (patch) | |
tree | b8d209668e7fc6c087a79685c7ef9835be47e962 /source4/param | |
parent | f5f6d6d2ab09aa0d0f0b659a07f9fe81920eeca2 (diff) | |
download | samba-8ffc4c1f97bf40cf19812b086cab2c48ff9aed9d.tar.gz samba-8ffc4c1f97bf40cf19812b086cab2c48ff9aed9d.tar.bz2 samba-8ffc4c1f97bf40cf19812b086cab2c48ff9aed9d.zip |
r25462: Remove refernece to categories from js as well.
(This used to be commit 12d7cccd7c8c632e2d49e9c21e0e139366ffe2c3)
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/loadparm.c | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 809a9173c4..043e7d2ba8 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -120,9 +120,9 @@ struct loadparm_global char *szWinbinddSocketDirectory; char *szTemplateShell; char *szTemplateHomedir; - int bWinbindSealedPipes; + bool bWinbindSealedPipes; char *swat_directory; - int tls_enabled; + bool tls_enabled; char *tls_keyfile; char *tls_certfile; char *tls_cafile; @@ -135,8 +135,8 @@ struct loadparm_global int srv_minprotocol; int cli_maxprotocol; int cli_minprotocol; - int security; - int paranoid_server_security; + enum security_types security; + bool paranoid_server_security; int max_wins_ttl; int min_wins_ttl; int announce_as; /* This is initialised in init_globals */ @@ -147,35 +147,35 @@ struct loadparm_global int kpasswd_port; int web_port; char *socket_options; - int bWINSsupport; - int bWINSdnsProxy; + bool bWINSsupport; + bool bWINSdnsProxy; char *szWINSHook; - int bLocalMaster; - int bPreferredMaster; - int bEncryptPasswords; - int bNullPasswords; - int bObeyPamRestrictions; - int bLargeReadwrite; - int bReadRaw; - int bWriteRaw; - int bTimeServer; - int bBindInterfacesOnly; - int bNTSmbSupport; - int bNTStatusSupport; - int bLanmanAuth; - int bNTLMAuth; - int bUseSpnego; + bool bLocalMaster; + bool bPreferredMaster; + bool bEncryptPasswords; + bool bNullPasswords; + bool bObeyPamRestrictions; + bool bLargeReadwrite; + bool bReadRaw; + bool bWriteRaw; + bool bTimeServer; + bool bBindInterfacesOnly; + bool bNTSmbSupport; + bool bNTStatusSupport; + bool bLanmanAuth; + bool bNTLMAuth; + bool bUseSpnego; int server_signing; int client_signing; - int bClientPlaintextAuth; - int bClientLanManAuth; - int bClientNTLMv2Auth; - int client_use_spnego_principal; - int bHostMSDfs; - int bUnicode; - int bUnixExtensions; - int bDisableNetbios; - int bRpcBigEndian; + bool bClientPlaintextAuth; + bool bClientLanManAuth; + bool bClientNTLMv2Auth; + bool client_use_spnego_principal; + bool bHostMSDfs; + bool bUnicode; + bool bUnixExtensions; + bool bDisableNetbios; + bool bRpcBigEndian; struct param_opt *param_opt; }; @@ -2033,7 +2033,7 @@ static bool do_section(const char *pszSectionName, void *userdata) /*************************************************************************** - Determine if a partcular base parameter is currentl set to the default value. + Determine if a particular base parameter is currentl set to the default value. ***************************************************************************/ static bool is_default(int i) |