diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-12-16 11:51:14 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-12-29 21:10:49 +0100 |
commit | 671469ae7e3013809fe3995ec8f33dda9adda2ed (patch) | |
tree | 930c363ffcb9f67abb46b310fc6ad89e514509d9 /source3/include | |
parent | 0544734309feea44e8d449737a9934231f63693d (diff) | |
download | samba-671469ae7e3013809fe3995ec8f33dda9adda2ed.tar.gz samba-671469ae7e3013809fe3995ec8f33dda9adda2ed.tar.bz2 samba-671469ae7e3013809fe3995ec8f33dda9adda2ed.zip |
s3:passdb: add SAMU_BUFFER_V4 with no changes
The upgrade is required because of the followin TDBSAM_VERSION
upgrade.
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/passdb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index bd0929fc75..93c1e3f0ab 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -100,7 +100,9 @@ typedef struct logon_cache_struct { #define SAMU_BUFFER_V1 1 #define SAMU_BUFFER_V2 2 #define SAMU_BUFFER_V3 3 -#define SAMU_BUFFER_LATEST SAMU_BUFFER_V3 +/* nothing changed from V3 to V4 */ +#define SAMU_BUFFER_V4 4 +#define SAMU_BUFFER_LATEST SAMU_BUFFER_V4 struct samu { struct pdb_methods *methods; |