diff options
author | Michael Adam <obnox@samba.org> | 2009-05-15 01:46:09 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-05-15 17:00:22 +0200 |
commit | 00297b74ac6320a23ba444647718680ddee37453 (patch) | |
tree | 0e9919ada9c9b44d3a976c0da026cb0c6f448c7d /source3/include | |
parent | a62e72b825117dc45d434fd1b3645633b5d063d6 (diff) | |
download | samba-00297b74ac6320a23ba444647718680ddee37453.tar.gz samba-00297b74ac6320a23ba444647718680ddee37453.tar.bz2 samba-00297b74ac6320a23ba444647718680ddee37453.zip |
s3:param: prevent includes from being dumped in dump_*() functions.
This fixes bug #4271: testparm should not print includes.
Michael
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 4be891d174..fed7468f3e 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -925,6 +925,7 @@ struct parm_struct { #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. */ +#define FLAG_META 0x8000 /* A meta directive - not a real parameter */ struct bitmap { uint32 *b; |