From 61b24e5e19fb189cfce7ff323c58e1bb1d7cce4d Mon Sep 17 00:00:00 2001 From: "cborntra@de.ibm.com" Date: Sun, 30 Jan 2005 13:09:38 +0100 Subject: [PATCH 1/1] [PATCH] udev_volume_id: fix -d option The -d option in udev_allows to go from a partition to the underlying disk for s390 dasd labels. If the device is already the disk itself, finding the parent will fail, therefore -d on /sys/block/dasda/ for example gives no result at all. --- extras/volume_id/udev_volume_id.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/volume_id/udev_volume_id.c b/extras/volume_id/udev_volume_id.c index 3fab54786..7b6985680 100644 --- a/extras/volume_id/udev_volume_id.c +++ b/extras/volume_id/udev_volume_id.c @@ -186,7 +186,7 @@ int main(int argc, char *argv[]) if (class_dev_parent != NULL) vid = open_classdev(class_dev_parent); else - vid = open_classdev(class_dev_parent); + vid = open_classdev(class_dev); if (vid == NULL) goto exit; -- 2.30.2