]> 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 2adec4fb97462e2fcc9c2e2a56c4ada46ab94054..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];
-   struct xattr_link_cache_entry *next;
-} xattr_link_cache_entry_t;
+};
 
 /*
  * Maximum size of the XATTR stream this prevents us from blowing up the filed.