diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-01 11:07:19 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-03 17:13:53 +0200 |
commit | 696bc569b17f024f840774e3d59761229836a310 (patch) | |
tree | 1af9bc7ef837fc96a3682d903f1199cba6dfdaa5 /source3 | |
parent | 94b320527eee0c7ba1d3818816e7d59cb863bf3f (diff) | |
download | samba-696bc569b17f024f840774e3d59761229836a310.tar.gz samba-696bc569b17f024f840774e3d59761229836a310.tar.bz2 samba-696bc569b17f024f840774e3d59761229836a310.zip |
smbd: Don't store in-memory only flags in locking.tdb
Hey, pidl knows the [skip] attribute ... :-)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/librpc/idl/open_files.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/idl/open_files.idl b/source3/librpc/idl/open_files.idl index fa87bc7592..a2e386f68c 100644 --- a/source3/librpc/idl/open_files.idl +++ b/source3/librpc/idl/open_files.idl @@ -42,8 +42,8 @@ interface open_files [size_is(num_delete_tokens)] delete_token delete_tokens[]; timespec old_write_time; timespec changed_write_time; - uint8 fresh; - uint8 modified; + [skip] boolean8 fresh; + [skip] boolean8 modified; [ignore] db_record *record; } share_mode_data; |