remove references to 'strip dot'
authorGerald Carter <jerry@samba.org>
Wed, 10 Sep 2003 00:43:00 +0000 (00:43 +0000)
committerGerald Carter <jerry@samba.org>
Wed, 10 Sep 2003 00:43:00 +0000 (00:43 +0000)
(This used to be commit b5c5a9dc76c7584047e6ad8e7063b2da348e67d7)

docs/docbook/smbdotconf/filename/stripdot.xml [deleted file]
source3/param/loadparm.c

diff --git a/docs/docbook/smbdotconf/filename/stripdot.xml b/docs/docbook/smbdotconf/filename/stripdot.xml
deleted file mode 100644 (file)
index afed63a..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-<samba:parameter name="strip dot"
-                 context="G"
-                 advanced="1" developer="1"
-                 xmlns:samba="http://samba.org/common">
-<listitem>
-       <para>This is a boolean that controls whether to 
-       strip trailing dots off UNIX filenames. This helps with some 
-       CDROMs that have filenames ending in a single dot.</para>
-
-       <para>Default: <command moreinfo="none">strip dot = no</command></para>
-</listitem>
-</samba:parameter>
index 41b32cef1096ef254ef5fd45a507d3600f986ccc..b370b6b049cc315747bd17bb86edd1be67bc4700 100644 (file)
@@ -246,7 +246,6 @@ typedef struct
        BOOL bUpdateEncrypt;
        int  clientSchannel;
        int  serverSchannel;
-       BOOL bStripDot;
        BOOL bNullPasswords;
        BOOL bObeyPamRestrictions;
        BOOL bLoadPrinters;
@@ -965,7 +964,6 @@ static struct parm_struct parm_table[] = {
        {"default devmode", P_BOOL, P_LOCAL, &sDefault.bDefaultDevmode, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
 
        {"Filename Handling", P_SEP, P_SEPARATOR}, 
-       {"strip dot", P_BOOL, P_GLOBAL, &Globals.bStripDot, NULL, NULL, FLAG_ADVANCED}, 
        {"mangling method", P_STRING, P_GLOBAL, &Globals.szManglingMethod, NULL, NULL, FLAG_ADVANCED}, 
        {"mangle prefix", P_INTEGER, P_GLOBAL, &Globals.mangle_prefix, NULL, NULL, FLAG_ADVANCED}, 
 
@@ -1387,7 +1385,6 @@ static void init_globals(void)
        Globals.bReadbmpx = False;
        Globals.bNullPasswords = False;
        Globals.bObeyPamRestrictions = False;
-       Globals.bStripDot = False;
        Globals.syslog = 1;
        Globals.bSyslogOnly = False;
        Globals.bTimestampLogs = True;
@@ -1718,7 +1715,6 @@ FN_GLOBAL_BOOL(lp_large_readwrite, &Globals.bLargeReadwrite)
 FN_GLOBAL_BOOL(lp_writeraw, &Globals.bWriteRaw)
 FN_GLOBAL_BOOL(lp_null_passwords, &Globals.bNullPasswords)
 FN_GLOBAL_BOOL(lp_obey_pam_restrictions, &Globals.bObeyPamRestrictions)
-FN_GLOBAL_BOOL(lp_strip_dot, &Globals.bStripDot)
 FN_GLOBAL_BOOL(lp_encrypted_passwords, &Globals.bEncryptPasswords)
 FN_GLOBAL_BOOL(lp_update_encrypted, &Globals.bUpdateEncrypt)
 FN_GLOBAL_INTEGER(lp_client_schannel, &Globals.clientSchannel)