svn commit: samba r25463 - in branches/SAMBA_4_0: . source/param

jelmer at samba.org jelmer at samba.org
Tue Oct 2 15:02:22 GMT 2007


Author: jelmer
Date: 2007-10-02 15:02:19 +0000 (Tue, 02 Oct 2007)
New Revision: 25463

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25463

Log:
revert accidently committed type changes for now, broke the build.
Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/param/loadparm.c


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:revision-info
...skipped...
Name: bzr:revision-id:v3-trunk0
...skipped...

Modified: branches/SAMBA_4_0/source/param/loadparm.c
===================================================================
--- branches/SAMBA_4_0/source/param/loadparm.c	2007-10-02 14:29:20 UTC (rev 25462)
+++ branches/SAMBA_4_0/source/param/loadparm.c	2007-10-02 15:02:19 UTC (rev 25463)
@@ -120,9 +120,9 @@
 	char *szWinbinddSocketDirectory;
 	char *szTemplateShell;
 	char *szTemplateHomedir;
-	bool bWinbindSealedPipes;
+	int bWinbindSealedPipes;
 	char *swat_directory;
-	bool tls_enabled;
+	int tls_enabled;
 	char *tls_keyfile;
 	char *tls_certfile;
 	char *tls_cafile;
@@ -135,8 +135,8 @@
 	int srv_minprotocol;
 	int cli_maxprotocol;
 	int cli_minprotocol;
-	enum security_types security;
-	bool paranoid_server_security;
+	int security;
+	int paranoid_server_security;
 	int max_wins_ttl;
 	int min_wins_ttl;
 	int announce_as;	/* This is initialised in init_globals */
@@ -147,35 +147,35 @@
 	int kpasswd_port;
 	int web_port;
 	char *socket_options;
-	bool bWINSsupport;
-	bool bWINSdnsProxy;
+	int bWINSsupport;
+	int bWINSdnsProxy;
 	char *szWINSHook; 
-	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 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;
 	int server_signing;
 	int client_signing;
-	bool bClientPlaintextAuth;
-	bool bClientLanManAuth;
-	bool bClientNTLMv2Auth;
-	bool client_use_spnego_principal;
-	bool bHostMSDfs;
-	bool bUnicode;
-	bool bUnixExtensions;
-	bool bDisableNetbios;
-	bool bRpcBigEndian;
+	int bClientPlaintextAuth;
+	int bClientLanManAuth;
+	int bClientNTLMv2Auth;
+	int client_use_spnego_principal;
+	int bHostMSDfs;
+	int bUnicode;
+	int bUnixExtensions;
+	int bDisableNetbios;
+	int bRpcBigEndian;
 	struct param_opt *param_opt;
 };
 
@@ -2033,7 +2033,7 @@
 
 
 /***************************************************************************
- Determine if a particular base parameter is currentl set to the default value.
+ Determine if a partcular base parameter is currentl set to the default value.
 ***************************************************************************/
 
 static bool is_default(int i)



More information about the samba-cvs mailing list