From 7949d5198d4a8c452588bbf4b3ea47499e315de9 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 17 Apr 2013 09:56:43 +0200 Subject: fix property strings --- udev-block-notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/udev-block-notify.c b/udev-block-notify.c index 636d647..44f2f4c 100644 --- a/udev-block-notify.c +++ b/udev-block-notify.c @@ -140,11 +140,11 @@ int main (int argc, char ** argv) { if ((value = udev_device_get_property_value(dev, "ID_FS_UUID")) != NULL) notifystr = appendstr(TEXT_TAG, notifystr, "UUID", value); if ((value = udev_device_get_property_value(dev, "ID_PART_TABLE_TYPE")) != NULL) - notifystr = appendstr(TEXT_TAG, notifystr, "Partition Type", value); + notifystr = appendstr(TEXT_TAG, notifystr, "Partition Table Type", value); if ((value = udev_device_get_property_value(dev, "ID_PART_TABLE_NAME")) != NULL) notifystr = appendstr(TEXT_TAG, notifystr, "Partition Name", value); if ((value = udev_device_get_property_value(dev, "ID_PART_ENTRY_TYPE")) != NULL) - notifystr = appendstr(TEXT_TAG, notifystr, "Partition UUID", value); + notifystr = appendstr(TEXT_TAG, notifystr, "Partition Type", value); } #if DEBUG -- cgit v1.2.3-54-g00ecf