diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-16 15:34:40 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-18 12:05:00 +1000 |
commit | ea5a9b21fb384524c8370c6d7a712b35e170fd06 (patch) | |
tree | 4bb1bd7ed4b2fefe9f866a11c44fd72476e9d870 /source3/include | |
parent | 19fb796960da0e6101a520036a2e610baa4515fd (diff) | |
download | samba-ea5a9b21fb384524c8370c6d7a712b35e170fd06.tar.gz samba-ea5a9b21fb384524c8370c6d7a712b35e170fd06.tar.bz2 samba-ea5a9b21fb384524c8370c6d7a712b35e170fd06.zip |
s3-build: move file_id.c into samba3-util and create a private header
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/locking.h | 2 | ||||
-rw-r--r-- | source3/include/proto.h | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/source3/include/locking.h b/source3/include/locking.h index 77a04eee2b..b003b55aa4 100644 --- a/source3/include/locking.h +++ b/source3/include/locking.h @@ -45,7 +45,7 @@ struct lock_context { struct files_struct; -#include "../librpc/gen_ndr/file_id.h" +#include "lib/file_id.h" struct byte_range_lock { struct files_struct *fsp; diff --git a/source3/include/proto.h b/source3/include/proto.h index 14fe730b40..8392b68797 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -122,11 +122,6 @@ int map_errno_from_nt_status(NTSTATUS status); /* The following definitions come from lib/file_id.c */ struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf); -bool file_id_equal(const struct file_id *id1, const struct file_id *id2); -const char *file_id_string_tos(const struct file_id *id); -void push_file_id_16(char *buf, const struct file_id *id); -void push_file_id_24(char *buf, const struct file_id *id); -void pull_file_id_24(char *buf, struct file_id *id); /* The following definitions come from lib/gencache.c */ |