]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/filed/xattr.h
Merge branch 'master' into basejobv3
[bacula/bacula] / bacula / src / filed / xattr.h
index ba66e1de4f87791ac7e589ffc65d104682ad9be6..16056165e72aaf11725b3742c62a301eaf36d651 100644 (file)
 /*
  * Internal representation of an extended attribute.
  */
-typedef struct xattr {
+struct xattr_t {
    uint32_t magic;
    uint32_t name_length;
    char *name;
    uint32_t value_length;
    char *value;
-} xattr_t;
+};
 
 /*
  * Internal representation of an extended attribute hardlinked file.
  */
-typedef struct xattr_link_cache_entry {
+struct xattr_link_cache_entry_t {
    uint32_t inum;
    char target[PATH_MAX];
-} xattr_link_cache_entry_t;
+};
 
 /*
  * Maximum size of the XATTR stream this prevents us from blowing up the filed.