diff options
author | Herb Lewis <herb@samba.org> | 2002-02-25 21:32:29 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-02-25 21:32:29 +0000 |
commit | e0adfbf9572fc7931c445f5660706200b803eacf (patch) | |
tree | eec11eb52789723889542e28ba90edb6ac4b9bd8 | |
parent | c9cfb1c7dd283709d7d77c6026226191c1b6b8fd (diff) | |
download | samba-e0adfbf9572fc7931c445f5660706200b803eacf.tar.gz samba-e0adfbf9572fc7931c445f5660706200b803eacf.tar.xz samba-e0adfbf9572fc7931c445f5660706200b803eacf.zip |
add required flags to "nt acl support" so it will show up in SWAT
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index a916bf2c896..e732037ee90 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -821,7 +821,7 @@ static struct parm_struct parm_table[] = { {"nt smb support", P_BOOL, P_GLOBAL, &Globals.bNTSmbSupport, NULL, NULL, 0}, {"nt pipe support", P_BOOL, P_GLOBAL, &Globals.bNTPipeSupport, NULL, NULL, 0}, - {"nt acl support", P_BOOL, P_LOCAL, &sDefault.bNTAclSupport, NULL, NULL, 0}, + {"nt acl support", P_BOOL, P_LOCAL, &sDefault.bNTAclSupport, NULL, NULL, FLAG_GLOBAL | FLAG_SHARE }, {"announce version", P_STRING, P_GLOBAL, &Globals.szAnnounceVersion, NULL, NULL, 0}, {"announce as", P_ENUM, P_GLOBAL, &Globals.announce_as, NULL, enum_announce_as, 0}, {"max mux", P_INTEGER, P_GLOBAL, &Globals.max_mux, NULL, NULL, 0}, |