diff options
Diffstat (limited to 'source3/lib/file_id.c')
-rw-r--r-- | source3/lib/file_id.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/source3/lib/file_id.c b/source3/lib/file_id.c index 026d2f8d27..1640708d6c 100644 --- a/source3/lib/file_id.c +++ b/source3/lib/file_id.c @@ -32,7 +32,7 @@ bool file_id_equal(const struct file_id *id1, const struct file_id *id2) } /* - a static string for a file_id structure + a static-like (on talloc_tos()) string for a file_id structure */ const char *file_id_string_tos(const struct file_id *id) { @@ -45,6 +45,19 @@ const char *file_id_string_tos(const struct file_id *id) } /* + an allocated string for a file_id structure + */ +const char *file_id_string(TALLOC_CTX *mem_ctx, const struct file_id *id) +{ + char *result = talloc_asprintf(mem_ctx, "%llx:%llx:%llx", + (unsigned long long)id->devid, + (unsigned long long)id->inode, + (unsigned long long)id->extid); + SMB_ASSERT(result != NULL); + return result; +} + +/* push a 16 byte version of a file id into a buffer. This ignores the extid and is needed when dev/inodes are stored in persistent storage (tdbs). */ |