diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2009-05-05 17:42:56 -0700 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2009-05-05 17:42:56 -0700 |
commit | 1db0b20d8a26fb60299d0ed7553d7a4847aee84f (patch) | |
tree | f36cfd53df221d85100c8fb8b36c6bc0a8ba840b /source3/param | |
parent | 4842e45d59dbd6c9ac138e796d30fcf747807d1c (diff) | |
download | samba-1db0b20d8a26fb60299d0ed7553d7a4847aee84f.tar.gz samba-1db0b20d8a26fb60299d0ed7553d7a4847aee84f.tar.bz2 samba-1db0b20d8a26fb60299d0ed7553d7a4847aee84f.zip |
s3 Reorder loadparm to keep aliases together
This keeps the "browseable" and "browsable" aliases together.
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 6dd8dbc9ce..a6c535c182 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3354,22 +3354,22 @@ static struct parm_struct parm_table[] = { .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT, }, { - .label = "access based share enum", + .label = "browsable", .type = P_BOOL, .p_class = P_LOCAL, - .ptr = &sDefault.bAccessBasedShareEnum, + .ptr = &sDefault.bBrowseable, .special = NULL, .enum_list = NULL, - .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE + .flags = FLAG_HIDE, }, { - .label = "browsable", + .label = "access based share enum", .type = P_BOOL, .p_class = P_LOCAL, - .ptr = &sDefault.bBrowseable, + .ptr = &sDefault.bAccessBasedShareEnum, .special = NULL, .enum_list = NULL, - .flags = FLAG_HIDE, + .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE }, { .label = "enhanced browsing", |