diff options
author | Ralph Boehme <slow@samba.org> | 2016-11-17 14:22:41 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-01-09 19:31:20 +0100 |
commit | 19eae537739daf95d10b67d9888769e7bf895d76 (patch) | |
tree | 093875323e774b3a6f13f456c22bc84e28e63ad5 /source3/param | |
parent | e2f34116ab6328e2b872999dc7c4bcda69c03ab2 (diff) | |
download | samba-19eae537739daf95d10b67d9888769e7bf895d76.tar.gz |
s3/smbd: convert "mangled names" option to an enum
This is in preparation of adding an additional setting for this
option. No change in behaviour by this commit, that comes in the next
one.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index d8da749ccba..ac9ba490fb7 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -201,7 +201,7 @@ static struct loadparm_service sDefault = .oplocks = true, .kernel_oplocks = false, .level2_oplocks = true, - .mangled_names = true, + .mangled_names = MANGLED_NAMES_YES, .wide_links = false, .follow_symlinks = true, .sync_always = false, |