diff options
author | Christian Hesse <mail@eworm.de> | 2013-04-17 09:56:43 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-04-17 09:56:43 +0200 |
commit | 7949d5198d4a8c452588bbf4b3ea47499e315de9 (patch) | |
tree | b8a4525867f45e922933ea64851f22f23d821c4c | |
parent | f615773fe6108221543495fb193a66eee7b8d85d (diff) | |
download | udev-block-notify-0.5.2.tar.gz udev-block-notify-0.5.2.tar.zst |
fix property strings0.5.2
-rw-r--r-- | udev-block-notify.c | 4 |
1 files 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 |