Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2bcd936 authored by Dave Chinner's avatar Dave Chinner
Browse files

xfs: directory names are unsigned



Convert the struct xfs_name to use unsigned chars for the name
strings to match both what is stored on disk (__uint8_t) and what
the VFS expects (unsigned char).

Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
parent 4e23471a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ typedef enum {
} xfs_btnum_t;

struct xfs_name {
	const char	*name;
	const unsigned char	*name;
	int			len;
};