builtin: blkid - add missing ID_FS_USAGE

This commit is contained in:
Kay Sievers 2011-12-23 04:06:34 +01:00
parent c7f9693c14
commit e5d8ce91be

View file

@ -40,6 +40,9 @@ static void print_property(struct udev_device *dev, bool test, const char *name,
if (!strcmp(name, "TYPE")) {
udev_builtin_add_property(dev, test, "ID_FS_TYPE", value);
} else if (!strcmp(name, "USAGE")) {
udev_builtin_add_property(dev, test, "ID_FS_USAGE", value);
} else if (!strcmp(name, "VERSION")) {
udev_builtin_add_property(dev, test, "ID_FS_VERSION", value);