[PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath

This commit is contained in:
kay.sievers@vrfy.org 2005-03-10 18:35:50 +01:00 committed by Greg KH
parent 4d7726399b
commit 3810823b44

View File

@ -180,7 +180,7 @@ exit:
}
static int print_dump(const char *devpath, const char *name) {
printf("%s:%s/%s\n", devpath, udev_root, name);
printf("%s=%s/%s\n", devpath, udev_root, name);
return 0;
}