summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>2003-07-28 05:49:51 +0000
committerJohn Terpstra <jht@samba.org>2003-07-28 05:49:51 +0000
commit6956eb9a0b878f6fae37e4de14573cccd2af2156 (patch)
treef4741e4e4e75aa4c3a4d5c811d8b5d1f34afc838
parentde7d3063d9e07255da2cc4e67afa50c1e2ddf321 (diff)
downloadsamba-6956eb9a0b878f6fae37e4de14573cccd2af2156.tar.gz
samba-6956eb9a0b878f6fae37e4de14573cccd2af2156.tar.xz
samba-6956eb9a0b878f6fae37e4de14573cccd2af2156.zip
Corrected description of SWAT FLAGS since they have changed as a result of the
cleanup of loadparm and swat.c
-rw-r--r--source/include/smb.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/include/smb.h b/source/include/smb.h
index f586b6f1a49..6a1d816898e 100644
--- a/source/include/smb.h
+++ b/source/include/smb.h
@@ -705,15 +705,14 @@ struct bitmap {
unsigned int n;
};
-/* Note: Parameters flagged as basic will be visible in all views. */
-/* Parameters NOT flagged as basic will not be preset to default value is not set in smb.conf */
-#define FLAG_BASIC 0x0001 /* fundamental options preset to default value if not set in smb.conf */
+/* The following flags are used in SWAT */
+#define FLAG_BASIC 0x0001 /* Display only in BASIC view */
#define FLAG_SHARE 0x0002 /* file sharing options */
#define FLAG_PRINT 0x0004 /* printing options */
#define FLAG_GLOBAL 0x0008 /* local options that should be globally settable in SWAT */
#define FLAG_WIZARD 0x0010 /* Parameters that the wizard will operate on */
-#define FLAG_ADVANCED 0x0020 /* Parameters that will be visible in advanced view and developer view */
-#define FLAG_DEVELOPER 0x0040 /* Parameters that will be visible only in developer view */
+#define FLAG_ADVANCED 0x0020 /* Parameters that will be visible in advanced view */
+#define FLAG_DEVELOPER 0x0040 /* No longer used */
#define FLAG_DEPRECATED 0x1000 /* options that should no longer be used */
#define FLAG_HIDE 0x2000 /* options that should be hidden in SWAT */
#define FLAG_DOS_STRING 0x4000 /* convert from UNIX to DOS codepage when reading this string. */