X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev%2Flib%2Ftest-libudev.c;h=592a147e0124461f4871eb23702bd6853e0760e3;hp=fd12bd9344ccbc9c0b576452aa4b0e1250a8a86b;hb=56c141eceb34041aa68bb9695c23eda165f47726;hpb=3d7b2831cd661afd7d946791110b6ad5a7156d7f diff --git a/udev/lib/test-libudev.c b/udev/lib/test-libudev.c index fd12bd934..592a147e0 100644 --- a/udev/lib/test-libudev.c +++ b/udev/lib/test-libudev.c @@ -101,6 +101,10 @@ static void print_device(struct udev_device *device) if (count > 0) printf("found %i properties\n", count); + str = udev_device_get_property_value(device, "MAJOR"); + if (str != NULL) + printf("MAJOR: '%s'\n", str); + str = udev_device_get_sysattr_value(device, "dev"); if (str != NULL) printf("attr{dev}: '%s'\n", str);